using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AmlAssetRecord Data Structure. /// [Serializable] public class AmlAssetRecord : AopObject { /// /// 数据生效时间 /// [XmlElement("active_date")] public string ActiveDate { get; set; } /// /// 名单或风险标签ID /// [XmlElement("lid")] public string Lid { get; set; } /// /// 客户ID /// [XmlElement("uid")] public string Uid { get; set; } /// /// 风险资产标签值 /// [XmlElement("value")] public string Value { get; set; } } }