初始提交
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user