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.

48 lines
1.2 KiB
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Boduo.Stock
{
/// <summary>
/// 确认扣款金额
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class PayMoneyTicketResponse
{
/// <summary>
/// 状态 0表示成功其他值表示失败
/// </summary>
[JsonProperty(PropertyName = "status")]
public int Status { get; set; }
/// <summary>
/// 提示消息内容
/// </summary>
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
/// <summary>
/// 账户余额
/// </summary>
[JsonProperty(PropertyName = "storeBalance")]
public decimal StoreBalance { get; set; }
/// <summary>
/// 返利金额
/// </summary>
[JsonProperty(PropertyName = "storeRebate")]
public decimal StoreRebate { get; set; }
/// <summary>
/// 要货扣除的金额
/// </summary>
[JsonProperty(PropertyName = "payMoney")]
public decimal PayMoney { get; set; }
}
}