using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipaySecurityDataAmlassetBatchqueryModel Data Structure. /// [Serializable] public class AlipaySecurityDataAmlassetBatchqueryModel : AopObject { /// /// 资产的类型,包括LABEL、AML_LIST等 /// [XmlElement("asset_type")] public string AssetType { get; set; } /// /// 合作客户 /// [XmlElement("client")] public string Client { get; set; } /// /// 名单or资产标签ID /// [XmlElement("lid")] public string Lid { get; set; } /// /// 客户ID列表 /// [XmlArray("uids")] [XmlArrayItem("string")] public List Uids { get; set; } } }