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