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.

90 lines
2.4 KiB
C#

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