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