using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppIndustryBizinfoApplyModel Data Structure. /// [Serializable] public class AlipayEbppIndustryBizinfoApplyModel : AopObject { /// /// 业务能力码,标识业务场景 /// [XmlElement("ability_code")] public string AbilityCode { get; set; } /// /// 业务账户号,例如水费单号,手机号,电费号,信用卡卡号。没有唯一性要求。 /// [XmlElement("bill_key")] public string BillKey { get; set; } /// /// 业务机构简称 /// [XmlElement("biz_inst")] public string BizInst { get; set; } /// /// 业务类型,公服业务:IND /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 外部申请流水号,支持幂等 /// [XmlElement("out_apply_no")] public string OutApplyNo { get; set; } /// /// 请求上下文,json格式 /// [XmlElement("request_context")] public string RequestContext { get; set; } } }