type等
This commit is contained in:
2
urbanLifelineServ/.gitignore
vendored
2
urbanLifelineServ/.gitignore
vendored
@@ -3,7 +3,7 @@
|
||||
|
||||
# Log file
|
||||
*.log
|
||||
|
||||
*/logs
|
||||
# BlueJ files
|
||||
*.ctxt
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.xyzh.api.crontab;
|
||||
package org.xyzh.api.crontab.service;
|
||||
|
||||
/**
|
||||
* 定时任务服务接口
|
||||
@@ -25,8 +25,8 @@ public class SysUserVO extends BaseVO {
|
||||
@Schema(description = "用户ID")
|
||||
private String userId;
|
||||
|
||||
@Schema(description = "用户名")
|
||||
private String username;
|
||||
@Schema(description = "用户编码")
|
||||
private String usercode;
|
||||
|
||||
@Schema(description = "密码(敏感信息,仅用于创建/修改)")
|
||||
private String password;
|
||||
@@ -47,21 +47,15 @@ public class SysUserVO extends BaseVO {
|
||||
private String userType;
|
||||
|
||||
// TbSysUserInfoDTO对应字段
|
||||
@Schema(description = "用户名")
|
||||
private String username;
|
||||
|
||||
@Schema(description = "头像")
|
||||
private String avatar;
|
||||
|
||||
@Schema(description = "性别")
|
||||
private Integer gender;
|
||||
|
||||
@Schema(description = "姓")
|
||||
private String familyName;
|
||||
|
||||
@Schema(description = "名")
|
||||
private String givenName;
|
||||
|
||||
@Schema(description = "全名")
|
||||
private String fullName;
|
||||
|
||||
@Schema(description = "等级")
|
||||
private Integer level;
|
||||
|
||||
@@ -87,7 +81,7 @@ public class SysUserVO extends BaseVO {
|
||||
}
|
||||
TbSysUserDTO dto = new TbSysUserDTO();
|
||||
dto.setUserId(vo.getUserId());
|
||||
dto.setUsername(vo.getUsername());
|
||||
dto.setUsercode(vo.getUsercode());
|
||||
dto.setPassword(vo.getPassword());
|
||||
dto.setEmail(vo.getEmail());
|
||||
dto.setPhone(vo.getPhone());
|
||||
|
||||
@@ -20,8 +20,8 @@ public class TbSysUserDTO extends BaseDTO {
|
||||
@Schema(description = "用户ID")
|
||||
private String userId;
|
||||
|
||||
@Schema(description = "用户名")
|
||||
private String username;
|
||||
@Schema(description = "用户编码")
|
||||
private String usercode;
|
||||
|
||||
@Schema(description = "密码")
|
||||
private String password;
|
||||
|
||||
@@ -26,14 +26,8 @@ public class TbSysUserInfoDTO extends BaseDTO {
|
||||
@Schema(description = "性别")
|
||||
private Integer gender;
|
||||
|
||||
@Schema(description = "姓")
|
||||
private String familyName;
|
||||
|
||||
@Schema(description = "名")
|
||||
private String givenName;
|
||||
|
||||
@Schema(description = "全名")
|
||||
private String fullName;
|
||||
@Schema(description = "用户名称")
|
||||
private String username;
|
||||
|
||||
@Schema(description = "等级")
|
||||
private Integer level;
|
||||
|
||||
Reference in New Issue
Block a user