using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// QueryComplexLabelRule Data Structure. /// [Serializable] public class QueryComplexLabelRule : AopObject { /// /// 标签id /// [XmlElement("label_id")] public string LabelId { get; set; } /// /// 标签名 /// [XmlElement("label_name")] public string LabelName { get; set; } /// /// 当有多个取值时用英文","分隔,不允许传入下划线"_"、竖线"|"或者空格" " /// [XmlElement("label_value")] public string LabelValue { get; set; } /// /// 运算符 /// [XmlElement("operator")] public string Operator { get; set; } } }