2025-03-28 09:49:56 +08:00

46 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Runtime.InteropServices;
namespace libEShangPB.Model
{
[ComVisible(false)]
internal class GSSYCouponModel
{
/// <summary>
/// 门店编号
/// </summary>
public string StoreNumber { get; set; }
/// <summary>
/// 券类型代码
/// </summary>
public string VoucherTypeCode { get; set; }
/// <summary>
/// 门店号+账号+密钥 MD5加密32位大写
/// </summary>
public string SignParam { get; set; }
/// <summary>
/// 券类型名称
/// </summary>
public string VoucherTypeName { get; set; }
/// <summary>
/// 待验证的券号
/// </summary>
public string VoucherNumber { get; set; }
/// <summary>
/// 状态码 固定 1为校验成功
/// </summary>
public string ResultCode { get; set; }
/// <summary>
/// 使用门槛金额
/// </summary>
public decimal UseAmount { get; set; }
/// <summary>
/// 券面值,现金券支付使用.
/// </summary>
public decimal FaceAmount { get; set; }
/// <summary>
/// 请求账号
/// </summary>
public string RequestAccount { get; set; }
}
}