using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 卡金额变动查询 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardAmountChangeResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 业务类型(recharge-充值;consume-消费;) /// [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// 业务类型描述 /// [JsonProperty(PropertyName = "typeCn")] public string TypeCn { get; set; } public string TypeName { get; set; } /// /// 变动前金额 /// [JsonProperty(PropertyName = "preAmount")] public Decimal PreAmount { get; set; } /// /// 变动金额 /// [JsonProperty(PropertyName = "amount")] public Decimal Amount { get; set; } /// /// 变动后金额 /// [JsonProperty(PropertyName = "aftAmount")] public Decimal AftAmount { get; set; } /// /// 变动前金额 /// [JsonProperty(PropertyName = "preTotalAmount")] public Decimal PreTotalAmount { get; set; } /// /// 变动金额 /// [JsonProperty(PropertyName = "totalAmount")] public Decimal TotalAmount { get; set; } /// /// 变动后金额 /// [JsonProperty(PropertyName = "aftTotalAmount")] public Decimal AftTotalAmount { get; set; } /// /// 变动时间(yyyy-MM-dd HH:mm:ss) /// [JsonProperty(PropertyName = "operateTime")] public string OperateTime { get; set; } /// /// 备注 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } } }