using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Dto.ErpInputs { public class MaterialTransferInput { /// /// 单号 /// public string? bill_code { get; set; } /// /// 单据状态 /// public string? biil_status { get; set; } /// /// 入库单创建日期 /// public DateTime? bill_date { get; set; } /// /// 出库仓库 /// public string? warehouse_outstock { get; set; } /// /// 入库仓库 /// public string? warehouse_instock { get; set; } /// /// 出库业务员 /// public string? biller_out { get; set; } /// /// 出库部门 /// public string? depart_out { get; set; } /// /// 入库业务员 /// public string? biller_in { get; set; } /// /// 入库部门 /// public string? depart_in { get; set; } /// /// 应发货日期 /// public DateTime deliver_date { get; set; } /// /// 应到货日期 /// public DateTime arrival_date { get; set; } public List details { get; set; } } public class MaterialTransferDetail { /// /// 行号 /// public string? lineno { get; set; } /// /// 物品代码 /// public string? material_code { get; set; } /// /// 规格型号 /// public string material_specification { get; set; } /// /// 单位代码 /// public string? unit_code { get; set; } /// /// 批号 /// public string? code_batch { get; set; } /// /// 工位编码 /// public string? station_code { get; set; } /// /// 应转主数量 /// public decimal? qty { get; set; } /// /// 物料描述 /// public string? material_ex { get; set; } } }