1、分页查询新增查询条件为''空字符串的判断处理

(cherry picked from commit 2f6f99f820)
This commit is contained in:
PushM
2024-05-09 15:40:33 +08:00
parent dc70c713b2
commit 986366fb72
5 changed files with 37 additions and 32 deletions

View File

@@ -28,6 +28,13 @@ public class UserFull {
return "";
}
public String getOrgName() {
if (orgs.size() > 0) {
return orgs.get(0).orgName;
}
return "";
}
public String getRoleKey() {
if (roles.size() > 0) {
return roles.get(0).roleKey;