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

48 lines
1.4 KiB
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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// CplifeResidentInfo Data Structure.
/// </summary>
[Serializable]
public class CplifeResidentInfo : AopObject
{
/// <summary>
/// 业主关联的房产在支付宝平台中的唯一标识。(该属性和property_entity_id两个至少需要填写一项如果两项都填写则以entity_id为准.)
/// </summary>
[JsonProperty("entity_id")]
public string EntityId { get; set; }
/// <summary>
/// 业主身份证号的MD5结果
/// </summary>
[JsonProperty("idcard_no")]
public string IdcardNo { get; set; }
/// <summary>
/// 用户的真实姓名
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 业主关联的房产在物业系统中的唯一标识。(该属性和entity_id两个至少需要填写一项如果两项都填写则以entity_id为准.)
/// </summary>
[JsonProperty("out_entity_id")]
public string OutEntityId { get; set; }
/// <summary>
/// 物业系统中小区住户的唯一ID标识.
/// </summary>
[JsonProperty("out_resident_id")]
public string OutResidentId { get; set; }
/// <summary>
/// 用户对房产的关系类型。业主:1家人:2租客:3
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}