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 InventorycheckInput { /// /// 盘点单号 /// public string? erp_bill_code { get; set; } /// /// 部门编码 /// public string? dept_code { get; set; } /// /// 业务员编码 /// public string? biller { get; set; } /// /// 盘点仓库编码 /// public string? warehouse_code { get; set; } /// /// 盘点日期 /// public string? check_date { get; set; } /// /// 主表pk /// public string? erp_pk { get; set; } public List details { get; set; } } public class InventorycheckInputDetail { /// /// 行号 /// 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? production_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; } } }