using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Dto.Outputs { /// /// 物料标签查询返回结果 /// public class MaterailLabelOutput { /// /// 物料ID /// public string material_id { get; set; } /// /// 物料编号 /// public string material_code { get; set; } /// /// 批次 /// public string code_batch { get; set;} /// /// 采购单号 /// public string purchase_code { get; set; } /// /// 供应商 /// public string supplier_id { get; set; } /// /// 条码数量 /// public decimal barcode_qty { get; set; } /// /// 单位ID /// public string unit_id { get; set; } /// /// 入库单号 /// public string in_bill_code { get; set; } /// /// 入库时间 /// public DateTime instock_time { get; set; } /// /// 出库单号 /// public string out_bill_code { get; set; } /// /// 出库时间 /// public DateTime? outstock_time { get; set; } /// /// 仓库ID /// public string warehouse_id { get; set; } /// /// 仓库名称 /// public string warehouse_name { get; set; } /// /// 库位ID /// public string location_id { get; set; } /// /// 库位编号 /// public string location_code { get; set; } } }