namespace Tnb.WarehouseMgr.Entities.Dto.Outputs { /// /// 载具查询输出类 /// public class CarryQueryOutput { public string id { get; set; } /// /// 所属组织ID /// ? public string? org_id { get; set; } /// /// 载具编号 /// public string carry_code { get; set; } = string.Empty; /// /// 载具名称 /// public string carry_name { get; set; } = string.Empty; /// /// 载具分类ID /// public string carrystd_id { get; set; } = string.Empty; /// /// 载具库位ID /// public string? location_id { get; set; } /// /// 载具库位编号 /// public string? location_code { get; set; } /// /// 来源单据ID /// public string? source_id { get; set; } /// /// 打包号 /// public string? bale_num { get; set; } /// /// 齐套搭配方案ID /// public string? collocation_scheme_id { get; set; } /// /// 齐套搭配方案编号 /// public string? collocation_scheme_code { get; set; } /// /// 供应商 /// public string supplier_id { get; set; } /// /// 入库时间 /// public DateTime instock_time { get; set; } /// /// 检验结论 /// public string check_conclusion { get; set; } /// /// 质检状态 /// public string qc_status { get; set; } /// /// 载具条码明细输出 /// public List? wmsCarryCodes { get; set; } } /// /// 载具查询明细输出类 /// public class CarryCodeQueryOutput { /// /// 主键ID /// public string id { get; set; } /// /// 所属组织ID /// public string? org_id { get; set; } /// /// 上级载具ID /// public string carry_id { get; set; } /// /// 子载具id /// public string member_carryid { get; set; } /// /// 子载具code /// public string member_carrycode { get; set; } /// /// 物品ID /// public string material_id { get; set; } = string.Empty; /// /// 物品代码 /// public string material_code { get; set; } = string.Empty; /// /// 条码编号 /// public string barcode { get; set; } = string.Empty; /// /// 批次 /// public string? code_batch { get; set; } /// /// 条码数量 /// public decimal codeqty { get; set; } /// /// 是否出库 /// public int is_out { get; set; } /// /// 库位ID /// public string location_id { get; set; } = string.Empty; /// /// 库位编号 /// public string location_code { get; set; } = string.Empty; /// /// 单位ID /// public string unit_id { get; set; } = string.Empty; /// /// 单位代码 /// public string unit_code { get; set; } = string.Empty; /// /// 仓库ID /// public string? warehouse_id { get; set; } /// /// 入库时间 /// public DateTime instock_time { get; set; } /// /// 是否检验 /// //public int is_check { get; set; } /// /// 检验结论 /// public string check_conclusion { get; set; } /// /// 供应商 /// public string supplier_id { get; set; } /// /// 物料名称 /// public string material_name { get; set; } } }