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,43 @@
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>
/// 抽样检验程序样本量字码表
/// </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; }
}
}

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; }
}
}