using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Transactions; namespace Tnb.WarehouseMgr.Entities.Dto.ErpInputs { public class TransferOrderInput { /// /// 单号 /// public string? transfer_order { get; set; } /// /// 部门编码 /// public string? dept_code { get; set; } /// /// 业务员编码 /// public string? biller { get; set; } /// /// 入库组织编号 /// public string? instockorg_code { get; set; } /// /// 入库组织id /// public string? instockorg_id { get; set; } /// /// 供货日期 /// public DateTime? ship_date { get; set; } /// /// 主表pk /// public string? erp_pk { get; set; } /// /// 交易类型 /// public string? transaction_type { get; set; } public List details { get; set; } } public class TransferOrderInputDetail { /// /// 行号 /// public string? lineno { get; set; } /// /// 物品代码 /// public string? material_code { get; set; } /// /// 单位代码 /// public string? unit_code { get; set; } /// /// 采购数量 /// public decimal? qty { get; set; } /// /// 批次 /// public string? code_batch { get; set; } /// /// 交货日期 /// public DateTime? delivery_date { get; set; } /// /// 子表主键 /// public string erp_line_pk { get; set; } /// /// 出库仓库 /// public string? warehouse_outstock { get; set; } /// /// 入库仓库 /// public string? warehouse_instock_id { get; set; } } public class TransferOrderDelInput { /// /// 主表主键 /// public string erp_pk { get; set; } } }