Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Model/Query/QueryParameter.cs

20 lines
500 B
C#
Raw Normal View History

2022-04-08 23:44:25 +08:00
using Newtonsoft.Json.Converters;
using SqlSugar;
2022-04-06 18:05:00 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2022-04-08 23:44:25 +08:00
using System.Text.Json.Serialization;
2022-04-06 18:05:00 +08:00
using System.Threading.Tasks;
namespace Yi.Framework.Model.Query
{
public class QueryParameter
{
2022-04-08 23:44:25 +08:00
public string Key { get; set; }
public string Value { get; set; }
[JsonConverter(typeof(StringEnumConverter))]
public ConditionalType Type { get; set; } = ConditionalType.Like;
2022-04-06 18:05:00 +08:00
}
}