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

32 lines
868 B
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 System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoCplifeRoominfoUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeRoominfoUploadModel : AopObject
{
/// <summary>
/// 请求批次号,由商户自定义,在商户系统内唯一标示一次业务请求。
/// </summary>
[JsonProperty("batch_id")]
public string BatchId { get; set; }
/// <summary>
/// 业主所在物业小区ID(支付宝平台唯一小区ID标示)
/// </summary>
[JsonProperty("community_id")]
public string CommunityId { get; set; }
/// <summary>
/// 待上传的房屋信息列表单次上传不超过200条.
/// </summary>
[JsonProperty("room_info_set")]
public List<CplifeRoomInfo> RoomInfoSet { get; set; }
}
}