39 lines
840 B
C#
39 lines
840 B
C#
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.QcMgr.Entities
|
|
{
|
|
// <summary>
|
|
/// 抽样检验程序样本量字码表
|
|
/// </summary>
|
|
[SugarTable("qc_aql_sample_code")]
|
|
public partial class QcAqlSampleCode : BaseEntity<string>
|
|
{
|
|
public QcAqlSampleCode()
|
|
{
|
|
id = SnowflakeIdHelper.NextId();
|
|
}
|
|
/// <summary>
|
|
/// 检验水平
|
|
/// </summary>
|
|
public string? checklevel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最小值
|
|
/// </summary>
|
|
public int? min { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最大值
|
|
/// </summary>
|
|
public int? max { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字码
|
|
/// </summary>
|
|
public string? code { get; set; }
|
|
|
|
}
|
|
}
|