36 lines
729 B
C#
36 lines
729 B
C#
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; }
|
|
}
|
|
} |