更新基类控制器

This commit is contained in:
chenchun
2022-04-06 18:05:00 +08:00
parent f82d520512
commit 5fcf5bd583
11 changed files with 152 additions and 342 deletions

View 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;
}
}