Skip to content

Commit

Permalink
feat-UserInfoController-b_enabled_at_auth_user支持查询
Browse files Browse the repository at this point in the history
  • Loading branch information
aruis committed Oct 24, 2024
1 parent 2c85e7f commit 1c59909
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ protected void afterInit() {

@Override
public List<ReferenceInfo> getReferenceList() {
return List.of(organizationController.toReferenceInfo("id_at_org_organization"), departmentController.toReferenceInfo("id_at_org_department"), dictController.toReferenceInfo("dict_user_gender"), userController.toReferenceInfo("id").add("b_enabled").add("v_username", "v_username"));
return List.of(
organizationController.toReferenceInfo("id_at_org_organization"),
departmentController.toReferenceInfo("id_at_org_department"),
dictController.toReferenceInfo("dict_user_gender"),
userController.toReferenceInfo("id").add("b_enabled").add("v_username", "v_username"));
}

@POST
Expand Down Expand Up @@ -242,7 +246,7 @@ public List<QueryItem> queryItemList() {
QueryItem.of("id_at_org_organization"),
QueryItem.of("id_at_org_department"),
QueryItem.of("b_user"),
QueryItem.of("b_enabled"),
QueryItem.of("b_enabled_at_auth_user"),
QueryItem.of("v_name").setSymbolType(QueryItem.SymbolType.LIKE),
QueryItem.of("v_phone").setSymbolType(QueryItem.SymbolType.LIKE),
QueryItem.of("v_username").setSymbolType(QueryItem.SymbolType.LIKE)
Expand Down

0 comments on commit 1c59909

Please sign in to comment.