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.Entity { /// /// 质检执行载具表 /// [SugarTable("qc_check_exec_carry")] public class QcCheckExecCarry:BaseEntity { public QcCheckExecCarry() { id = SnowflakeIdHelper.NextId(); } public string org_id { get; set; } /// /// 质检主表id /// public string qc_check_exec_id { get;set; } public string carry_id { get; set; } public string carry_code { get; set; } public string warehouse_id { get; set; } public string qty { get; set; } /// /// 状态 /// public string status { get;set; } /// /// 库位 /// public string location_id { get; set; } public string location_code { get; set; } /// /// 物料id /// public string material_id { get;set; } /// /// 暂控处理单id /// public string temp_control_order_id { get; set; } /// /// 提报人 /// public string reporter_id { get;set;} /// /// 处理人id /// public string processer_id { 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; } } }