You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
682 B
C#

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