41 lines
840 B
C#
41 lines
840 B
C#
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.QcMgr.Entities
|
|
{
|
|
|
|
/// <summary>
|
|
/// spc控制图系数
|
|
/// </summary>
|
|
[SugarTable("qc_spc_config")]
|
|
public partial class QcSpcConfig : BaseEntity<string>
|
|
{
|
|
public QcSpcConfig()
|
|
{
|
|
id = SnowflakeIdHelper.NextId();
|
|
}
|
|
/// <summary>
|
|
/// 控制图类型
|
|
/// </summary>
|
|
public string? spctype { get; set; }
|
|
|
|
/// <summary>
|
|
/// 子组容量
|
|
/// </summary>
|
|
public int? subcapacity { get; set; }
|
|
|
|
/// <summary>
|
|
/// 控制图键
|
|
/// </summary>
|
|
public string? spckey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 控制图值
|
|
/// </summary>
|
|
public float? spcdata { get; set; }
|
|
|
|
}
|
|
|
|
}
|