using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsTicketEditDetail { /// /// 商品ID /// [JsonProperty(PropertyName = "productId")] public string ProductId { get; set; } /// /// 规格ID /// [JsonProperty(PropertyName = "specId")] public string SpecId { get; set; } /// /// 要货数量 /// [JsonProperty(PropertyName = "amount")] public decimal Amount { get; set; } /// /// 商品价格 /// [JsonProperty(PropertyName = "price")] public decimal Price { get; set; } /// /// 配送费 /// [JsonProperty(PropertyName = "money")] public decimal Money { get; set; } /// /// 合计金额 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } } }