25 lines
592 B
C#
25 lines
592 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEbppProdmodeReconconfQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEbppProdmodeReconconfQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 缴费业务类型
|
|
/// </summary>
|
|
[XmlElement("biz_type")]
|
|
public string BizType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 销账机构编码
|
|
/// </summary>
|
|
[XmlElement("chargeoff_code")]
|
|
public string ChargeoffCode { get; set; }
|
|
}
|
|
}
|