18 lines
419 B
C#
18 lines
419 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayEbppProdmodeInstshortnameQueryModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AlipayEbppProdmodeInstshortnameQueryModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 出账机构中文名称
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("chargeinst_cn_name")]
|
||
|
|
public string ChargeinstCnName { get; set; }
|
||
|
|
}
|
||
|
|
}
|