NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppPdeductSignQueryM...

49 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEbppPdeductSignQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppPdeductSignQueryModel : AopObject
{
/// <summary>
/// 支付宝代扣协议Id。若协议id不传递则需要保证业务类型、子业务类型、出账机构、户号必传
/// </summary>
[XmlElement("agreement_id")]
public string AgreementId { get; set; }
/// <summary>
/// 户号,机构针对于每户的水、电都会有唯一的标识户号
/// </summary>
[XmlElement("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 业务类型。 JF缴水、电、燃气、固话宽带、有线电视、交通罚款费用 WUYE缴物业费 HK信用卡还款 TX手机充值
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 支付宝缴费系统中的出账机构ID
/// </summary>
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
/// <summary>
/// 业务子类型。 WATER缴水费 ELECTRIC缴电费 GAS缴燃气费 COMMUN缴固话宽带 CATV缴有线电视费 TRAFFIC缴交通罚款 WUYE缴物业费 HK信用卡还款 CZ手机充值
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 用户ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}