using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Dto.ErpInputs { public class TransferOutstockInput { /// /// 单号 /// public string? transfer_order { get; set; } /// /// 联系人 /// public string? contact_person { get; set; } /// /// 电话 /// public string? tel { get; set; } /// /// 部门编码 /// public string? dept_code { get; set; } /// /// 业务员编码 /// public string? biller { get; set; } /// /// 出库组织编号 /// public string? outstockorg_code { get; set; } /// /// 出库组织编号 /// public string? outstockorg_id { get; set; } /// /// 入库仓库编号 /// public string? warehouse_instock { get; set; } /// /// 凭证日期 /// public DateTime? certificate_date { get; set; } /// /// 供货日期 /// public DateTime? ship_date { get; set; } /// /// 主表pk /// public string? erp_pk { get; set; } public List details { get; set; } } public class RawMatTransferInstockDetail { /// /// 行号 /// public string? lineno { get; set; } /// /// 物品代码 /// public string? material_code { get; set; } /// /// 单位代码 /// public string? unit_code { get; set; } /// /// 委外数量 /// public decimal? qty { get; set; } /// /// 库存地点编号 /// public string? stock_location { get; set; } /// /// 批次 /// public string? code_batch { get; set; } /// /// 交货日期 /// public DateTime? delivery_date { 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; } } }