46 lines
955 B
C#
46 lines
955 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.QcMgr.Entities
|
|
{
|
|
|
|
/// <summary>
|
|
/// spc控制图系数
|
|
/// </summary>
|
|
[SugarTable("qc_spc_data")]
|
|
public partial class QcSpcData : BaseEntity<string>
|
|
{
|
|
public QcSpcData()
|
|
{
|
|
id = SnowflakeIdHelper.NextId();
|
|
}
|
|
/// <summary>
|
|
/// 控制图类型
|
|
/// </summary>
|
|
public string? spctype { get; set; }
|
|
|
|
/// <summary>
|
|
/// 子组容量
|
|
/// </summary>
|
|
public string? subcapacity { get; set; }
|
|
|
|
/// <summary>
|
|
/// 控制图键
|
|
/// </summary>
|
|
public string? spckey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 控制图值
|
|
/// </summary>
|
|
public decimal? spcdata { get; set; }
|
|
|
|
}
|
|
|
|
}
|