NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoCplifeBillBatchUpl...

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