andon呼叫 aql 模具保养

This commit is contained in:
qianjiawei
2023-09-12 17:33:25 +08:00
parent e117d501b7
commit 5365efa279
9 changed files with 361 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
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>
/// aql抽样方案
/// </summary>
[SugarTable("qc_aql_sample_plan")]
public partial class QcAqlSamplePlan : BaseEntity<string>
{
public QcAqlSamplePlan()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 检验类型
/// </summary>
public string? checktype { get; set; }
/// <summary>
/// 字码
/// </summary>
public string? code { get; set; }
/// <summary>
/// 样本量
/// </summary>
public int? samplesize { get; set; }
/// <summary>
/// aql值
/// </summary>
public decimal? aqlvalue { get; set; }
/// <summary>
/// 接受
/// </summary>
public int? ac { get; set; }
/// <summary>
/// 拒收
/// </summary>
public int? re { get; set; }
}
}