using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class DispatchTicketReceive { /// /// 原料Id /// [JsonProperty(PropertyName = "productId")] public string ProductId { get; set; } /// /// 原料编码 /// [JsonProperty(PropertyName = "productNo")] public string ProductNo { get; set; } /// /// 原料名称 /// [JsonProperty(PropertyName = "productName")] public string ProductName { get; set; } /// /// 规格ID /// [JsonProperty(PropertyName = "specId")] public string SpecId { get; set; } /// /// 规格名称 /// [JsonProperty(PropertyName = "specName")] public string SpecName { get; set; } /// /// 原料说明 /// [JsonProperty(PropertyName = "productDescription")] public string ProductDescription { get; set; } /// /// 配送单位ID /// [JsonProperty(PropertyName = "dispatchUnitId")] public string DispatchUnitId { get; set; } /// /// 配送单位名称 /// [JsonProperty(PropertyName = "dispatchUnitName")] public string DispatchUnitName { get; set; } /// /// 配送价格 /// [JsonProperty(PropertyName = "dispatchPrice")] public decimal DispatchPrice { get; set; } /// /// 要货数量 /// [JsonProperty(PropertyName = "askgoodsAmount")] public decimal AskgoodsAmount { get; set; } /// /// 配送数量 /// [JsonProperty(PropertyName = "dispatchAmount")] public decimal DispatchAmount { get; set; } /// /// 收货数量 /// [JsonProperty(PropertyName = "receiveAmount")] public decimal ReceiveAmount { get; set; } /// /// 小计金额 /// [JsonProperty(PropertyName = "subtotalPrice")] public decimal SubtotalPrice { get; set; } /// /// 差异数量 /// [JsonProperty(PropertyName = "differenceAmount")] public decimal DifferenceAmount { get; set; } /// /// 差异金额 /// [JsonProperty(PropertyName = "differencePrice")] public decimal DifferencePrice { get; set; } /// /// 备注说明 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } } }