using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ModelQueryParam Data Structure. /// [Serializable] public class ModelQueryParam : AopObject { /// /// 条件查询参数 /// [JsonProperty("key")] public string Key { get; set; } /// /// 操作计算符,目前仅支持EQ /// [JsonProperty("operate")] public string Operate { get; set; } /// /// 查询参数值 /// [JsonProperty("value")] public string Value { get; set; } } }