using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.QcMgr.Entities
{///
/// 质检执行子表
///
[SugarTable("qc_check_exec_d")]
public partial class QcCheckExecD : BaseEntity
{
public QcCheckExecD()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 质检执行主表编号
///
public string? mainid { get; set; }
///
/// 执行项格式
///
public string? extype { get; set; }
///
/// 执行项内容
///
public string? excontent { get; set; }
///
/// 抽检类型
///
public string? check { get; set; }
///
/// 不良原因
///
public string? errorcause { get; set; }
///
/// 不良等级
///
public string? errorlevel { get; set; }
///
/// 备注
///
public string? remark { get; set; }
///
/// 附件
///
public string? attachment { get; set; }
///
/// 执行时操作
///
public string? isexec { get; set; }
///
/// 客户
///
public string? custom { get; set; }
///
/// 质检项分类编号
///
public string? typeid { get; set; }
///
/// 质检项编号
///
public string? itemid { get; set; }
///
/// 创建用户
///
public string? create_id { get; set; }
///
/// 创建时间
///
public DateTime? create_time { get; set; }
///
/// 修改用户
///
public string? modify_id { get; set; }
///
/// 修改时间
///
public DateTime? modify_time { get; set; }
///
/// 结论
///
public string? result { get; set; }
///
/// 数据
///
public string? postdata { get; set; }
///
/// 抽样数索引
///
public string? checkindex { get; set; }
///
/// 不合格数量
///
public int qty { get; set; }
}
}