using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AntProdpaasProductCommonQueryModel Data Structure. /// [Serializable] public class AntProdpaasProductCommonQueryModel : AopObject { /// /// 产品码 /// [XmlElement("product_code")] public string ProductCode { get; set; } /// /// 产品查询维度,主要分为基础信息,条件信息和产品关联关系信息等 /// [XmlElement("product_options")] public ProductVOOptions ProductOptions { get; set; } /// /// 产品版本 /// [XmlElement("product_version")] public string ProductVersion { get; set; } } }