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

32 lines
893 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>
/// AlipayEcoCplifeResidentinfoUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeResidentinfoUploadModel : 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("resident_info")]
public List<CplifeResidentInfo> ResidentInfo { get; set; }
}
}