using DapperORMCore.Model.CoreModel; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Condition.NXPDA.InStock { public class DifferenceInventoryDetail { public int InventoryDtlId { get; set; } public int InventoryId { get; set; } /// /// 实际数量 /// public decimal ActualQTY { get; set; } /// /// 描述 /// public string Describe { get; set; } } /// /// 提交差异盘点 /// public class CommitDifferenceInventoryDetailCondition: OperationInfo { public string PaltantCode { get; set; } public IEnumerable Details { get; set; } } }