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

42 lines
1.4 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>
/// AlipayEcoCplifeBillSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeBillSyncModel : AopObject
{
/// <summary>
/// 待同步的物业费账单应收明细条目ID
/// </summary>
[JsonProperty("bill_entry_id")]
public string BillEntryId { get; set; }
/// <summary>
/// 支付宝社区物业平台小区ID用户通过支付宝社区物业平台物业查询获取。
/// </summary>
[JsonProperty("community_id")]
public string CommunityId { get; set; }
/// <summary>
/// 指定条目待更新的缴费截止日期 若operate_type为update该参数选填 若operate_type为delete该参数不用填。
/// </summary>
[JsonProperty("new_deadline")]
public string NewDeadline { get; set; }
/// <summary>
/// 指定条目待更新的应收金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000] 若operate_type为update该参数选填 若operate_type为delete该参数不用填。
/// </summary>
[JsonProperty("new_entry_amount")]
public string NewEntryAmount { get; set; }
/// <summary>
/// 同步类型: delete删除 update更改
/// </summary>
[JsonProperty("operate_type")]
public string OperateType { get; set; }
}
}