更新基类控制器
This commit is contained in:
16
Yi.Framework.Net6/Yi.Framework.Model/Query/QueryParameter.cs
Normal file
16
Yi.Framework.Net6/Yi.Framework.Model/Query/QueryParameter.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user