using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// QueryLabelRule Data Structure. /// [Serializable] public class QueryLabelRule : AopObject { /// /// 标签id /// [JsonProperty("label_id")] public string LabelId { get; set; } /// /// 标签名 /// [JsonProperty("label_name")] public string LabelName { get; set; } /// /// 标签值,多值会用英文逗号分隔 /// [JsonProperty("label_value")] public string LabelValue { get; set; } /// /// 运算符 /// [JsonProperty("operator")] public string Operator { get; set; } } }