Skip to content

Commit

Permalink
* 用户VO增加accountStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
Scorrt-2021 committed Jan 13, 2023
1 parent 5ca9f2c commit f5e1471
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public class IamUserVO extends IamUser {
@BindEntityList(entity = IamUserPosition.class, condition = "this.id = user_id AND user_type = 'IamUser'")
private List<IamUserPosition> userPositionList;

@BindField(entity = IamAccount.class, field = "status", condition = "this.id = user_id AND user_type = 'IamUser'")
private String accountStatus;
@BindDict(type="ACCOUNT_STATUS", field = "accountStatusLabel")
@BindField(entity = IamAccount.class, field = "status", condition = "this.id = user_id AND user_type = 'IamUser'")
private String accountStatusLabel;
Expand Down

0 comments on commit f5e1471

Please sign in to comment.