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