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 partial class QcCheckExecCarry : BaseEntity { public QcCheckExecCarry() { id = SnowflakeIdHelper.NextId(); } /// /// 组织 /// public string org_id { get; set; } /// /// 质检任务主表id /// public string qc_check_exec_id { get; set; } /// /// 载具id /// public string carry_id { get; set; } /// /// 载具编码 /// public string carry_code { get; set; } /// /// 仓库id /// public string warehouse_id { get; set; } /// /// 条码数量 /// public string qty { get; set; } /// /// 检验状态 /// public string status { get; set; } /// /// 库位id /// public string location_id { get; set; } /// /// 库位编码 /// public string location_code { get;set; } /// /// 物料id /// public string material_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; } /// /// 暂控处理单id /// public string temp_control_order_id { get; set; } /// /// 提报人 /// public string reporter_id { get; set; } /// /// 处理人 /// public string processer_id { get; set; } } }