NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoCplifeResidentinfo...

33 lines
1023 B
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>
/// AlipayEcoCplifeResidentinfoUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeResidentinfoUploadModel : AopObject
{
/// <summary>
/// 请求流水号,由商户自定义,在商户系统内唯一标示一次业务请求。
/// </summary>
[XmlElement("batch_id")]
public string BatchId { get; set; }
/// <summary>
/// 业主所在物业小区ID(支付宝平台唯一小区ID标示)
/// </summary>
[XmlElement("community_id")]
public string CommunityId { get; set; }
/// <summary>
/// 请求上传的住户信息列表单次至多上传200条住户信息.
/// </summary>
[XmlArray("resident_info")]
[XmlArrayItem("cplife_resident_info")]
public List<CplifeResidentInfo> ResidentInfo { get; set; }
}
}