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

17 lines
397 B
C#
Raw Normal View History

2022-04-06 18:05:00 +08:00
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Model.Query
{
public class QueryParameter
{
public string FieldName { get; set; }
public string FieldValue { get; set; }
public ConditionalType ConditionalType { get; set; } = ConditionalType.Like;
}
}