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

54 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>
/// CPBillModifySet Data Structure.
/// </summary>
[Serializable]
public class CPBillModifySet : AopObject
{
/// <summary>
/// 若账期需修改则传入。账期用于缴费明细页归类和展示可以使用不超过16个字符的有业务含义的字符串。
/// </summary>
[JsonProperty("acct_period")]
public string AcctPeriod { get; set; }
/// <summary>
/// 若应收金额需修改,则传入,单位为元,精确到小数点后两位,取值范围[0.01,100000000]
/// </summary>
[JsonProperty("bill_entry_amount")]
public string BillEntryAmount { get; set; }
/// <summary>
/// 待修改的物业费账单应收明细条目ID
/// </summary>
[JsonProperty("bill_entry_id")]
public string BillEntryId { get; set; }
/// <summary>
/// 若费用类型需修改,则传入
/// </summary>
[JsonProperty("cost_type")]
public string CostType { get; set; }
/// <summary>
/// 若缴费截止日期需修改则传入。格式固定为YYYYMMDD
/// </summary>
[JsonProperty("deadline")]
public string Deadline { get; set; }
/// <summary>
/// 若出账日期需修改则传入格式固定为YYYYMMDD
/// </summary>
[JsonProperty("release_day")]
public string ReleaseDay { get; set; }
/// <summary>
/// 若房屋门牌地址需要修改,则传入该值
/// </summary>
[JsonProperty("room_address")]
public string RoomAddress { get; set; }
}
}