using System; using System.Collections.Generic; using System.Text; namespace WMS.Web.Core.Dto.Erp { /// /// ERP:入库单-统一响应对象 /// public class ErpInStockResultDto { /// /// 单据编号 /// public string BillNo { get; set; } /// /// 组织 /// public int OrgId { get; set; } /// /// erp的明细ID /// public int ErpDetailId { get; set; } /// /// 组织编码 /// public string OrgCode { get; set; } /// /// 供应商 /// public int SupplierId { get; set; } /// /// 物料ID /// public int MaterialId { get; set; } /// /// 仓库ID /// public int StockId { get; set; } /// /// 仓库code /// public string StockCode { get; set; } /// /// 数量 /// public decimal Qty { get; set; } /// /// 出厂价 /// public decimal FactoryPrice { get; set; } /// /// 已交数量(对应金蝶的已交数量-对应物料),目前只有采购订单有 /// public decimal DeliveredQty { get; set; } /// /// 明细备注 /// public string Remark { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 单据类型 /// public int Type { get; set; } } }