using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayIserviceCognitiveKgopenQueryModel Data Structure. /// [Serializable] public class AlipayIserviceCognitiveKgopenQueryModel : AopObject { /// /// 所属在线服务的编码 /// [XmlElement("online_service_code")] public string OnlineServiceCode { get; set; } /// /// 查询参数 /// [XmlArray("params")] [XmlArrayItem("map_parameter")] public List Params { get; set; } } }