fix HouseCode查询条件完善

update 动态查询新增startwith和endwith的like查询方式
This commit is contained in:
2021-07-05 17:50:21 +08:00
parent 9a814faf4b
commit 4588ff56df
7 changed files with 49 additions and 18 deletions

View File

@@ -53,6 +53,18 @@ namespace Ewide.Core
/// 不为空
/// </summary>
[Description("不为空")]
IsNotNull = 7
IsNotNull = 7,
/// <summary>
/// 开始于 LIKE Param%
/// </summary>
[Description("LIKE Param%")]
StartWith =8,
/// <summary>
/// 结合于 LIKE %Param
/// </summary>
[Description("LIKE %Param")]
EndWith = 9
}
}