andon呼叫 aql 模具保养
This commit is contained in:
43
QcMgr/Tnb.QcMgr.Entities/Entity/QcAqlSampleCode.cs
Normal file
43
QcMgr/Tnb.QcMgr.Entities/Entity/QcAqlSampleCode.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
53
QcMgr/Tnb.QcMgr.Entities/Entity/QcAqlSamplePlan.cs
Normal file
53
QcMgr/Tnb.QcMgr.Entities/Entity/QcAqlSamplePlan.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user