NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoCplifeRoominfoUplo...

33 lines
994 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>
/// AlipayEcoCplifeRoominfoUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeRoominfoUploadModel : 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("room_info_set")]
[XmlArrayItem("cplife_room_info")]
public List<CplifeRoomInfo> RoomInfoSet { get; set; }
}
}