using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 外卖汇总 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class WaimaiOrderStatisticsResponse { /// /// 应收金额 /// [JsonProperty(PropertyName = "receiveAmount")] public decimal ReceiveAmount { get; set; } /// /// 商家应收金额 /// [JsonProperty(PropertyName = "totalAmount")] public decimal TotalAmount { get; set; } /// ///总单数 /// [JsonProperty(PropertyName = "total")] public int Total { get; set; } /// /// 其他状态单数 /// [JsonProperty(PropertyName = "other")] public int Other { get; set; } /// /// 订单原价 /// [JsonProperty(PropertyName = "originalAmount")] public decimal OriginalAmount { get; set; } /// /// 配送费用 /// [JsonProperty(PropertyName = "shippingFee")] public decimal ShippingFee { get; set; } /// /// 完成数 /// [JsonProperty(PropertyName = "success")] public int Success { get; set; } /// /// 退单数 /// [JsonProperty(PropertyName = "failed")] public int Failed { get; set; } /// /// 外卖标识(meituan-美团外卖;eleme-饿了么;) /// [JsonProperty(PropertyName = "sign")] public string Sign { get; set; } [JsonIgnore] public string SignName { get; set; } } }