fix HouseCode查询条件完善
update 动态查询新增startwith和endwith的like查询方式
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user