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