初始提交
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// ChargeInstMode Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class ChargeInstMode : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 机构简称(英文名称)
|
||||
/// </summary>
|
||||
[JsonProperty("charge_inst")]
|
||||
public string ChargeInst { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 机构中文名称
|
||||
/// </summary>
|
||||
[JsonProperty("charge_inst_name")]
|
||||
public string ChargeInstName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 城市
|
||||
/// </summary>
|
||||
[JsonProperty("city")]
|
||||
public string City { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 省份
|
||||
/// </summary>
|
||||
[JsonProperty("province")]
|
||||
public string Province { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user