using JNPF.Common.Contracts; using JNPF.Common.Security; using NPOI.OpenXmlFormats.Dml; using SqlSugar; namespace Tnb.WarehouseMgr.Entities; /// /// 载具库存集合 /// public partial class WmsCarryStockReport { public int index { get; set; } ///// ///// 所属组织 ///// //public string? 组织 { get; set; } /// /// 载具ID /// public string? carry_id { get; set; } /// /// 载具编码 /// public string? carry_code { get; set; } /// /// 载具名称 /// public string? carry_name { get; set; } /// /// 子载具编码 /// public string? membercarry_code { get; set; } /// /// 子载具名称 /// public string? membercarry_name { get; set; } /// /// 物料ID /// public string? material_id { get; set; } /// /// 物料编码 /// public string? material_code { get; set; } /// /// 物料名称 /// public string? material_name { get; set; } /// /// 仓库名称 /// public string? warehouse_name { get; set; } /// /// 库位编码 /// public string? location_code { get; set; } /// /// 库位名称 /// public string? location_name { get; set; } /// /// 载具状态 /// public string? carry_status { get; set; } /// /// 库位状态 /// public string? location_status { get; set; } /// /// 载具类型 /// public string? carry_type { get; set; } /// /// 入库时间 /// public string? instock_time { get; set; } /// /// 条码 /// public string? barcode { get; set; } /// /// 批次 /// public string? code_batch { get; set; } /// /// /// public string? material_specification { get; set; } /// /// /// public string? container_no { get; set; } /// /// 数量 /// public decimal? qty { get; set; } /// /// 单位 /// public string? unit { get; set; } /// /// 操作用户 /// public string? creator { get; set; } /// /// 绑定时间 /// public string? bind_time { get; set; } /// /// 质检结果 /// public string qc_res { get; set; } = string.Empty; /// /// 辅助属性(供应商) /// public string? auxprop_gys { get; set; } = string.Empty; /// /// 辅助属性(小批号) /// public string? auxprop_xph { get; set; } = string.Empty; } /// /// 载具库存报表 /// public partial class WmsCarryStockReportH { public int index { get; set; } ///// ///// 所属组织 ///// //public string? 组织 { get; set; } ///// ///// 载具ID ///// //public string? carry_id { get; set; } /// /// 载具编码 /// public string? carry_code { get; set; } /// /// 载具名称 /// public string? carry_name { get; set; } /// /// 仓库名称 /// public string? warehouse_name { get; set; } /// /// 库位编码 /// public string? location_code { get; set; } /// /// 库位名称 /// public string? location_name { get; set; } /// /// 载具状态 /// public string? carry_status { get; set; } /// /// 库位状态 /// public string? location_status { get; set; } /// /// 载具类型 /// public string? carry_type { get; set; } /// /// 入库时间 /// public string? instock_time { get; set; } public List Details { get; set; } } /// /// 载具库存报表条码表 /// public partial class WmsCarryStockReportCode { public int index { get; set; } ///// ///// 载具ID ///// //public string? carry_id { get; set; } /// /// 载具编码 /// public string? carry_code { get; set; } /// /// 载具名称 /// public string? carry_name { get; set; } ///// ///// 物料ID ///// //public string? material_id { get; set; } /// /// 物料编号 /// public string? material_code { get; set; } /// /// 物料名称 /// public string? material_name { get; set; } /// /// /// public string? material_specification { get; set; } /// /// /// public string? container_no { get; set; } /// /// 条码编号 /// public string? barcode { get; set; } /// /// 批次 /// public string? code_batch { get; set; } /// /// 条码数量 /// public decimal? qty { get; set; } /// /// 单位 /// public string? unit { get; set; } ///// ///// 操作用户 ///// //public string? 创建用户 { get; set; } /// /// 绑定时间 /// public string? bind_time { get; set; } /// /// 辅助属性(供应商) /// public string? auxprop_gys { get; set; } /// /// 辅助属性(小批号) /// public string? auxprop_xph { get; set; } /// /// 质检结果 /// public string? qc_res { get; set; } } /// /// 载具库存报表 /// public partial class WmsCarryStockReportExcel { public int index { get; set; } ///// ///// 所属组织 ///// //public string? 组织 { get; set; } ///// ///// 载具ID ///// //public string? carry_id { get; set; } /// /// 载具编码 /// public string? carry_code { get; set; } /// /// 载具名称 /// public string? carry_name { get; set; } /// /// 仓库名称 /// public string? warehouse_name { get; set; } /// /// 库位编码 /// public string? location_code { get; set; } /// /// 库位名称 /// public string? location_name { get; set; } /// /// 载具状态 /// public string? carry_status { get; set; } /// /// 库位状态 /// public string? location_status { get; set; } /// /// 载具类型 /// public string? carry_type { get; set; } /// /// 入库时间 /// public string? instock_time { get; set; } ///// ///// 物料ID ///// //public string? material_id { get; set; } /// /// 物料编号 /// public string? material_code { get; set; } /// /// 物料名称 /// public string? material_name { get; set; } /// /// 条码编号 /// public string? barcode { get; set; } /// /// 批次 /// public string? code_batch { get; set; } /// /// 条码数量 /// public decimal? qty { get; set; } /// /// 单位 /// public string? unit { get; set; } ///// ///// 操作用户 ///// //public string? 创建用户 { get; set; } /// /// 绑定时间 /// public string? bind_time { get; set; } /// /// 物料规格 /// public string? material_specification { get; set; } /// /// 物料型号 /// public string? container_no { get;set; } }