using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AnttechBlockchainTwcUserinfoMatchModel Data Structure. /// [Serializable] public class AnttechBlockchainTwcUserinfoMatchModel : AopObject { /// /// 移动号码hash后的字符串 /// [XmlElement("call_no_hash")] public string CallNoHash { get; set; } /// /// 注册使用的用户名 /// [XmlElement("unify_no")] public string UnifyNo { get; set; } /// /// 名字证件号对应的sha256的hash值 /// [XmlElement("unify_no_hash")] public string UnifyNoHash { get; set; } } }