25 lines
574 B
C#
25 lines
574 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEcoRenthouseRenterIdinfoQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEcoRenthouseRenterIdinfoQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 身份证号
|
|
/// </summary>
|
|
[XmlElement("card_no")]
|
|
public string CardNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户姓名
|
|
/// </summary>
|
|
[XmlElement("user_name")]
|
|
public string UserName { get; set; }
|
|
}
|
|
}
|