Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/CardBinVO.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

66 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;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// CardBinVO Data Structure.
/// </summary>
[Serializable]
public class CardBinVO : AopObject
{
/// <summary>
/// 卡的别名
/// </summary>
[JsonProperty("card_alias")]
public string CardAlias { get; set; }
/// <summary>
/// 卡bin值通常为卡号的前6位
/// </summary>
[JsonProperty("card_bin_value")]
public string CardBinValue { get; set; }
/// <summary>
/// 卡类型对象定义
/// </summary>
[JsonProperty("card_type_vo")]
public CardTypeVO CardTypeVo { get; set; }
/// <summary>
/// 卡域模型定义
/// </summary>
[JsonProperty("domain_vo")]
public CardDomainVO DomainVo { get; set; }
/// <summary>
/// 机构内标
/// </summary>
[JsonProperty("inst_id")]
public string InstId { get; set; }
/// <summary>
/// 卡号长度
/// </summary>
[JsonProperty("inst_len")]
public string InstLen { get; set; }
/// <summary>
/// 备注
/// </summary>
[JsonProperty("memo")]
public string Memo { get; set; }
/// <summary>
/// 操作员
/// </summary>
[JsonProperty("operator")]
public string Operator { get; set; }
/// <summary>
/// 卡版本信息
/// </summary>
[JsonProperty("version")]
public string Version { get; set; }
}
}