using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppIndustryOrderCreateModel Data Structure. /// [Serializable] public class AlipayEbppIndustryOrderCreateModel : AopObject { /// /// 能力码是由支付宝分配的标识code /// [XmlElement("ability_code")] public string AbilityCode { get; set; } /// /// 账单的账期,例如201703表示2017年3月的账单。 /// [XmlElement("bill_date")] public string BillDate { get; set; } /// /// 业务账户号,例如水费单号,手机号,电费号,信用卡卡号。没有唯一性要求。 /// [XmlElement("bill_key")] public string BillKey { get; set; } /// /// 用户创建订单时涉及到的业务总金额。单位为:RMB Yuan。取值范围为[0.01,100000000.00),精确到小数点后两位。 /// [XmlElement("biz_amount")] public string BizAmount { get; set; } /// /// 机构简称例如杭州电力HZELECTRIC /// [XmlElement("biz_inst_short_name")] public string BizInstShortName { get; set; } /// /// 业务类型,缴费业务为JF,还款业务HK,公服行业为IND。 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 城市编码,国标码 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 扩展属性,json串(key-value对) /// [XmlElement("extend_field")] public string ExtendField { get; set; } /// /// 滞纳金额,单位:元 /// [XmlElement("fine_amount")] public string FineAmount { get; set; } /// /// 身份标识号,例如身份证号、纳税人识别号等。 /// [XmlElement("identity_no")] public string IdentityNo { get; set; } /// /// 用户的手机号 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// ISV流水号,用于控制幂等,须确保全局唯一 /// [XmlElement("out_order_no")] public string OutOrderNo { get; set; } /// /// 拥有该订单的用户姓名 /// [XmlElement("owner_name")] public string OwnerName { get; set; } /// /// 省份编码,国标码 /// [XmlElement("province_code")] public string ProvinceCode { get; set; } /// /// 子业务类型,水费为WATER,燃气费为GAS,社保为SI,公积金为HF,社保+公积金为SIHF /// [XmlElement("sub_biz_type")] public string SubBizType { get; set; } } }