using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppIndustryBizinfoQueryModel Data Structure. /// [Serializable] public class AlipayEbppIndustryBizinfoQueryModel : AopObject { /// /// 业务机构简称 /// [XmlElement("biz_inst")] public string BizInst { get; set; } /// /// 业务类型,公服业务:IND /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 业务数据码,标识业务场景 /// [XmlElement("data_code")] public string DataCode { get; set; } /// /// 请求上下文,json格式 /// [XmlElement("request_context")] public string RequestContext { get; set; } } }