Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEbppPdeductSignQueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

48 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEbppPdeductSignQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppPdeductSignQueryModel : AopObject
{
/// <summary>
/// 支付宝代扣协议Id。若协议id不传递则需要保证业务类型、子业务类型、出账机构、户号必传
/// </summary>
[JsonProperty("agreement_id")]
public string AgreementId { get; set; }
/// <summary>
/// 户号,机构针对于每户的水、电都会有唯一的标识户号
/// </summary>
[JsonProperty("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 业务类型。 JF缴水、电、燃气、固话宽带、有线电视、交通罚款费用 WUYE缴物业费 HK信用卡还款 TX手机充值
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 支付宝缴费系统中的出账机构ID
/// </summary>
[JsonProperty("charge_inst")]
public string ChargeInst { get; set; }
/// <summary>
/// 业务子类型。 WATER缴水费 ELECTRIC缴电费 GAS缴燃气费 COMMUN缴固话宽带 CATV缴有线电视费 TRAFFIC缴交通罚款 WUYE缴物业费 HK信用卡还款 CZ手机充值
/// </summary>
[JsonProperty("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 用户ID
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}