using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsTicketEdit { /// /// ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 单号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 备注 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// 商品金额 /// [JsonProperty(PropertyName = "productMoney")] public decimal ProductMoney { get; set; } /// /// 配送费 /// [JsonProperty(PropertyName = "dispatchMoney")] public decimal DispatchMoney { get; set; } /// /// 合计金额 /// [JsonProperty(PropertyName = "totalMoney")] public decimal TotalMoney { get; set; } /// /// 制单人 /// [JsonProperty(PropertyName = "setMan")] public string SetMan { get; set; } /// /// 配送方式 /// [JsonProperty(PropertyName = "deliveryMode")] public string DeliveryMode { get; set; } /// /// 配送方式名称 /// [JsonProperty(PropertyName = "deliveryModeDesc")] public string DeliveryModeDesc { get; set; } /// /// 单据明细 /// [JsonProperty(PropertyName = "detail")] public List Detail { get; set; } } }