43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// RelationVO Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class RelationVO : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 支付宝账户名称(脱敏)
|
|
/// </summary>
|
|
[XmlElement("oppo_account_name")]
|
|
public string OppoAccountName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 唯一标记一个儿童的业务id
|
|
/// </summary>
|
|
[XmlElement("oppo_child_id")]
|
|
public string OppoChildId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 头像路径
|
|
/// </summary>
|
|
[XmlElement("oppo_head_url")]
|
|
public string OppoHeadUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// 儿童昵称
|
|
/// </summary>
|
|
[XmlElement("oppo_nick_name")]
|
|
public string OppoNickName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对方真实姓名(脱敏)
|
|
/// </summary>
|
|
[XmlElement("oppo_real_name")]
|
|
public string OppoRealName { get; set; }
|
|
}
|
|
}
|