using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppIsvImportedbillQueryModel Data Structure. /// [Serializable] public class AlipayEbppIsvImportedbillQueryModel : AopObject { /// /// 业务类型 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 出账机构 /// [XmlElement("charge_inst")] public string ChargeInst { get; set; } /// /// 账单导入截止日期 /// [XmlElement("end_date")] public string EndDate { get; set; } /// /// 机构代码 /// [XmlElement("org_code")] public string OrgCode { get; set; } /// /// 账单导入起始日期 /// [XmlElement("start_date")] public string StartDate { get; set; } /// /// 子业务类型 /// [XmlElement("sub_biz_type")] public string SubBizType { get; set; } } }