using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Card { /// /// 查询组别下会员卡总金额和总积分 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class QueryGroupTotalResponse { /// /// 总金额 /// [JsonProperty(PropertyName = "totalAmount")] public decimal TotalAmount { get; set; } /// /// 总积分 /// [JsonProperty(PropertyName = "totalPoint")] public decimal TotalPoint { get; set; } } }