48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|