Closed masankin closed 4 years ago
@QueryFenix(nativeQuery = true) List<User> queryList(Integer status);
<andEqual field="t.status" value="status" match="?status != empty" />
status 为 null 或 0 判断都一样 , 这个有什么好的解决方法吗
@masankin empty是空的含义,比 null 的空的含义更广,根据具体的类型的不同,也会有些不同意义的空值。如果你想只判断 null 情况的化,那你直接写成 ?status != null 就行。
empty
null
?status != null
<andEqual field="t.status" value="status" match="?status != empty" />
status 为 null 或 0 判断都一样 , 这个有什么好的解决方法吗