using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppJfexportChargeinstQueryModel Data Structure. /// [Serializable] public class AlipayEbppJfexportChargeinstQueryModel : AopObject { /// /// 业务类型英文简称,固定传JF,表示缴费 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 拓展字段,json串(key-value对) /// [XmlElement("extend_field")] public string ExtendField { get; set; } /// /// 第几页,从1开始,默认为1 /// [XmlElement("page")] public long Page { get; set; } /// /// 是否分页查询,非分页查询时最多返回500条数据。 /// [XmlElement("page_query")] public bool PageQuery { get; set; } /// /// 每页展示的行数,默认为10 /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 子业务类型英文简称,ELECTRIC-电费,WATER-水费,GAS-燃气费 /// [XmlElement("sub_biz_type")] public string SubBizType { get; set; } } }