using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEbppProdmodeReconconfQueryModel Data Structure. /// [Serializable] public class AlipayEbppProdmodeReconconfQueryModel : AopObject { /// /// 缴费业务类型 /// [JsonProperty("biz_type")] public string BizType { get; set; } /// /// 销账机构编码 /// [JsonProperty("chargeoff_code")] public string ChargeoffCode { get; set; } } }