| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | /** |
| | | * 视图实体类 |
| | | * |
| | | * @author Chill |
| | | */ |
| | | @Data |
| | | @Getter |
| | | @Setter |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @ApiModel(value = "UserVO对象", description = "UserVO对象") |
| | | public class UserVO extends User { |
| | |
| | | */ |
| | | private String userExt; |
| | | |
| | | /*** |
| | | * 账号是否停用 0为启用,1为启用 |
| | | */ |
| | | private Integer userStatus; |
| | | |
| | | /*** |
| | | * 账号是否停用 0为启用,1为启用 |
| | | */ |
| | | private String userStatusText; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "用户信息{[" + |
| | | super.toString()+ "]" + |
| | | ", roleName='" + roleName + '\'' + |
| | | ", tenantName='" + tenantName + '\'' + |
| | | ", userTypeName='" + userTypeName + '\'' + |
| | | ", deptName='" + deptName + '\'' + |
| | | ", postName='" + postName + '\'' + |
| | | ", sexName='" + sexName + '\'' + |
| | | ", userStatusText='" + userStatusText + '\'' + |
| | | '}'; |
| | | } |
| | | |
| | | } |