using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.QcMgr.Entities { /// /// 质检执行主表 /// [SugarTable("qc_check_exec_h")] public partial class QcCheckExecH : BaseEntity { public QcCheckExecH() { id = SnowflakeIdHelper.NextId(); } /// /// 物料编号 /// public string? materialid { get; set; } /// /// 质检类型 /// public string? checktype { get; set; } /// /// 工序编号 /// public string? processid { get; set; } /// /// 工位编号 /// public string? workid { get; set; } /// /// 仓库库位编号 /// public string? wareid { get; set; } /// /// 抽样数 /// public string? checknum { get; set; } /// /// 合格数 /// public int? qty { get; set; } /// /// 不合格数 /// public int? rqty { get; set; } /// /// 状态 /// public string? status { get; set; } /// /// 结论 /// public string? result { get; set; } /// /// 任务生成时间 /// public string? tasktime { get; set; } /// /// 质检人 /// public string? execuser { get; set; } /// /// 执行时间 /// public string? exectime { get; set; } /// /// 扩展 /// public string? extras { 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 bill_code { get; set; } /// /// 生产任务单编号 /// public string mo_task_code { get; set; } /// /// 载具编号 /// public string carry_code { get; set; } /// /// 提报记录id /// public string report_id { get; set; } /// /// 抽样方式 /// public string check_type { get; set; } /// /// 备注 /// public string remark { get; set; } public string batch { get; set; } /// /// 附件对象. /// public string attachment { get; set; } = string.Empty; } }