Skip to content

Commit

Permalink
feat-UserInfoController-支持用邮箱查询人员信息
Browse files Browse the repository at this point in the history
  • Loading branch information
aruis committed Oct 17, 2024
1 parent acc0514 commit d742978
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,12 @@ public String enableUser(@PathParam("id") String id) {

@Override
public List<QueryItem> queryItemList() {
return List.of(QueryItem.of("v_name").setSymbolType(QueryItem.SymbolType.LIKE), QueryItem.of("v_phone").setSymbolType(QueryItem.SymbolType.LIKE), QueryItem.of("v_username").setSymbolType(QueryItem.SymbolType.LIKE));
return List.of(
QueryItem.of("v_email"),
QueryItem.of("v_name").setSymbolType(QueryItem.SymbolType.LIKE),
QueryItem.of("v_phone").setSymbolType(QueryItem.SymbolType.LIKE),
QueryItem.of("v_username").setSymbolType(QueryItem.SymbolType.LIKE)
);
}

@GET
Expand Down

0 comments on commit d742978

Please sign in to comment.