NewGaoKaoApi/PaymentSDK/AliPay/Domain/QueryUserChargeInstAndAreaI...

61 lines
1.5 KiB
C#
Raw 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>
/// QueryUserChargeInstAndAreaInfo Data Structure.
/// </summary>
[Serializable]
public class QueryUserChargeInstAndAreaInfo : AopObject
{
/// <summary>
/// 出账机构简称
/// </summary>
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
/// <summary>
/// 出账机构名称
/// </summary>
[XmlElement("charge_inst_name")]
public string ChargeInstName { get; set; }
/// <summary>
/// 城市名称
/// </summary>
[XmlElement("city")]
public string City { get; set; }
/// <summary>
/// 城市编号
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 缴费次数
/// </summary>
[XmlElement("pay_count")]
public string PayCount { get; set; }
/// <summary>
/// 最近一次缴费日期
/// </summary>
[XmlElement("pay_date")]
public string PayDate { get; set; }
/// <summary>
/// 子业务类型: 电费:ELECTRIC,水费:WATER,GAS:燃气费 暖气费HEATING, 有线电视费:CATV
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 用户ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}