using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEbppCommonBillkeyQueryModel Data Structure. /// [Serializable] public class AlipayEbppCommonBillkeyQueryModel : AopObject { /// /// 业务类型缩写: JF-缴费 /// [JsonProperty("biz_type")] public string BizType { get; set; } /// /// 出账机构缩写 /// [JsonProperty("charge_inst")] public string ChargeInst { get; set; } /// /// 子业务类型英文名称: ELECTRIC-电力 GAS-燃气 WATER-水 /// [JsonProperty("sub_biz_type")] public string SubBizType { get; set; } } }