Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/QueryUserChargeInstAndAreaInfo.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

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