1
This commit is contained in:
45
QcMgr/Tnb.QcMgr.Entities/Entity/QcSpcConfig.cs
Normal file
45
QcMgr/Tnb.QcMgr.Entities/Entity/QcSpcConfig.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
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_config")]
|
||||
public partial class QcSpcConfig : BaseEntity<string>
|
||||
{
|
||||
public QcSpcConfig()
|
||||
{
|
||||
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; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user