using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Dto.ErpInputs { public class SaleShippingInput { /// /// 销售发货单号 /// public string? bill_code { get; set; } /// /// 单据类型 /// public string? bill_type { get; set; } /// /// 单据状态 /// public string? bill_status { get; set; } /// /// 出库仓库编号 /// public string? warehouse_code { get; set; } /// /// 客户编码 /// public string? customer_code { get; set; } /// /// 客户名称 /// public string? customer_name { get; set; } /// /// 供货日期 /// public DateTime? ship_date { get; set; } /// /// 主表主键 /// public string erp_pk { get; set; } public List details { get; set; } } public class SaleShippingDetail { /// /// 行号 /// public string? lineno { get; set; } /// /// 物料代码 /// public string? material_code { get; set; } /// /// 单位代码 /// public string? unit_code { get; set; } /// /// 批号 /// public string? code_batch { get; set; } /// /// 发货数量 /// public decimal? sale_qty { get; set; } /// /// 子表主键 /// public string erp_line_pk { get; set; } /// /// 辅助属性 /// public string auxprop { get; set; } /// /// 辅助属性 /// public string auxprop_gys { get; set; } /// /// 辅助属性 /// public string auxprop_xph { get; set; } } }