using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class WeiXinOrderPromo { /// /// 订单明细ID /// [JsonProperty(PropertyName = "orderItemId")] public string OrderItemId { get; set; } /// /// 优惠类型 /// [JsonProperty(PropertyName = "type")] public int Type { get; set; } /// /// 优惠说明 /// [JsonProperty(PropertyName = "info")] public string Info { get; set; } /// /// 优惠金额 /// [JsonProperty(PropertyName = "discountMoney")] public decimal DiscountMoney { get; set; } } }