24 lines
518 B
C#
24 lines
518 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEbppProdmodeSignQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEbppProdmodeSignQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 出账/销账机构支付宝账号
|
|
/// </summary>
|
|
[JsonProperty("logon_id")]
|
|
public string LogonId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品编号
|
|
/// </summary>
|
|
[JsonProperty("prod_code")]
|
|
public string ProdCode { get; set; }
|
|
}
|
|
} |