using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ProductVOOptions Data Structure. /// [Serializable] public class ProductVOOptions : AopObject { /// /// 是否包括产品条件组信息,默认为false /// [XmlElement("include_condition_group")] public bool IncludeConditionGroup { get; set; } /// /// 是否包括产品基本信息,默认为false /// [XmlElement("include_prod_base")] public bool IncludeProdBase { get; set; } /// /// 是否包括产品参与者信息,默认为false /// [XmlElement("include_prod_ip")] public bool IncludeProdIp { get; set; } /// /// 是否包括产品区域信息 /// [XmlElement("include_prod_lo")] public bool IncludeProdLo { get; set; } /// /// 是否包括产品外标信息 /// [XmlElement("include_prod_mark")] public bool IncludeProdMark { get; set; } /// /// 产品关联关系 /// [XmlElement("include_prod_rel")] public string IncludeProdRel { get; set; } /// /// 是否包括产品资源项信息 /// [XmlElement("include_prod_ri")] public bool IncludeProdRi { get; set; } } }