using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tnb.WarehouseMgr.Entities.Consts; namespace Tnb.WarehouseMgr.Entities.Dto.Inputs { public class WmsInventorycheckSubmitInput { public string erp_line_pk { get; set; } public List details { get; set; } } public class WmsInventorycheckSubmitDetailInput { public string carry_code { get; set; } public string material_id { get; set; } public string code_batch { get; set; } public string actual_qty { get; set; } public string location_id { get; set; } } /// /// 盘点物料查询数量明细 /// public class WmsInventoryCheckQtyInput { /// /// 仓库id /// public string warehouse_id { get; set; } /// /// 物料id /// public string material_id { get; set; } /// /// 批次号 /// public string code_batch { get; set; } } /// /// 盘点物料查询数量明细返回 /// public class WmsInventoryCheckSearchOut { /// /// 物料id /// public string material_id { get; set; } /// /// 物料编码 /// public string material_code { get;set; } /// /// 物料名称 /// public string material_name { get;set; } /// /// 库位id /// public string location_id { get;set; } /// /// 库位编码 /// public string location_code { get; set; } /// /// 批次 /// public string code_batch { get;set; } /// /// 物料数量 /// public decimal? qty { get; set; } /// /// 物料型号 /// public string material_standard { get; set; } /// /// 物料规格 /// public string material_specifition { get; set; } /// /// 载具id /// public string carry_id { get; set; } /// /// 载具编号 /// public string carry_code { get; set; } } /// /// 盘点提交 /// public class WmsInventoryCheckDSubmitInput { /// /// 盘点单明细id /// public string checkd_bill_id { get;set; } public List details { get; set; } } /// /// 盘点提交明细列表 /// public class WmsInventoryCheckListSubmitInput { /// /// 物料id /// public string material_id { get;set; } /// /// 批次号 /// public string code_batch { get; set; } /// /// 查询数量 /// public decimal? qty { get;set; } /// /// 盘点实际数量 /// public decimal? check_qty { get; set; } /// /// 库位id /// public string location_id { get; set; } /// /// 库位编码 /// public string location_code { get; set; } /// /// 载具id /// public string carry_id { get; set; } /// /// 载具编码 /// public string carry_code { get; set; } } }