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

33 lines
1.2 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 System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoCplifeBillBatchUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeBillBatchUploadModel : AopObject
{
/// <summary>
/// 每次上传物业费账单,都需要提供一个批次号。对于每一个合作伙伴,传递的每一个批次号都必须保证唯一性,同时对于批次号内的账单明细数据必须保证唯一性;
/// 建议格式为8位当天日期+流水号324位流水号可以接受数字或英文字符建议使用数字
/// </summary>
[JsonProperty("batch_id")]
public string BatchId { get; set; }
/// <summary>
/// 账单应收条目明细集合同一小区内条目明细不允许重复一次接口请求最多支持1000条明细。
/// </summary>
[JsonProperty("bill_set")]
public List<CPBillSet> BillSet { get; set; }
/// <summary>
/// 支付宝社区小区统一编号,必须在物业账号名下存在。
/// </summary>
[JsonProperty("community_id")]
public string CommunityId { get; set; }
}
}