🚚 移动system实体类

This commit is contained in:
Bunny 2025-07-10 14:12:11 +08:00
parent 5e45b19116
commit 0ece66f4ee
11 changed files with 11 additions and 11 deletions

View File

@ -33,7 +33,7 @@ public class UserDto {
@Schema(name = "password", title = "密码")
private String password;
@Schema(name = "avatar", title = "")
@Schema(name = "avatar", title = "头像")
private String avatar;
@Schema(name = "sex", title = "0:女 1:男")

View File

@ -17,7 +17,7 @@ import java.time.LocalDateTime;
@Schema(name = "EmailUsers对象", title = "邮箱发送表", description = "邮箱发送表的实体类对象")
public class EmailUsersEntity {
@Schema(name = "id", title = "")
@Schema(name = "id", title = "主键")
@TableId(type = IdType.ASSIGN_ID)
private Long id;

View File

@ -17,7 +17,7 @@ import java.time.LocalDateTime;
@Schema(name = "MenuIcon对象", title = "图标code不能重复", description = "图标code不能重复的实体类对象")
public class MenuIconEntity {
@Schema(name = "id", title = "")
@Schema(name = "id", title = "主键")
@TableId(type = IdType.ASSIGN_ID)
private Long id;

View File

@ -14,7 +14,7 @@ import java.time.LocalDateTime;
@Setter
@Accessors(chain = true)
@TableName("sys_message_received")
@Schema(name = "MessageReceived对象", title = "", description = "的实体类对象")
@Schema(name = "MessageReceived对象", title = "接受消息Vo", description = "的实体类对象")
public class MessageReceivedEntity {
@Schema(name = "id", title = "主键")

View File

@ -17,7 +17,7 @@ import java.time.LocalDateTime;
@Schema(name = "Role对象", title = "系统角色表", description = "系统角色表的实体类对象")
public class RoleEntity {
@Schema(name = "id", title = "")
@Schema(name = "id", title = "主键")
@TableId(type = IdType.ASSIGN_ID)
private Long id;

View File

@ -36,7 +36,7 @@ public class UserEntity {
@Schema(name = "password", title = "密码")
private String password;
@Schema(name = "avatar", title = "")
@Schema(name = "avatar", title = "头像")
private String avatar;
@Schema(name = "sex", title = "0:女 1:男")

View File

@ -13,7 +13,7 @@ import java.time.LocalDateTime;
@Schema(name = "EmailUsersVO对象", title = "邮箱发送表", description = "邮箱发送表的VO对象")
public class EmailUsersVo {
@Schema(name = "id", title = "")
@Schema(name = "id", title = "主键")
private Long id;
@Schema(name = "email", title = "邮箱")

View File

@ -13,7 +13,7 @@ import java.time.LocalDateTime;
@Schema(name = "MenuIconVO对象", title = "图标code不能重复", description = "图标code不能重复的VO对象")
public class MenuIconVo {
@Schema(name = "id", title = "")
@Schema(name = "id", title = "主键")
private Long id;
@Schema(name = "iconCode", title = "icon类名")

View File

@ -10,7 +10,7 @@ import java.time.LocalDateTime;
@Data
@AllArgsConstructor
@NoArgsConstructor
@Schema(name = "MessageReceivedVO对象", title = "", description = "的VO对象")
@Schema(name = "MessageReceivedVO对象", title = "消息接受返回对象", description = "的VO对象")
public class MessageReceivedVo {
@Schema(name = "id", title = "主键")

View File

@ -13,7 +13,7 @@ import java.time.LocalDateTime;
@Schema(name = "RoleVO对象", title = "系统角色表", description = "系统角色表的VO对象")
public class RoleVo {
@Schema(name = "id", title = "")
@Schema(name = "id", title = "主键")
private Long id;
@Schema(name = "roleCode", title = "角色代码")

View File

@ -31,7 +31,7 @@ public class UserVo {
@Schema(name = "password", title = "密码")
private String password;
@Schema(name = "avatar", title = "")
@Schema(name = "avatar", title = "头像")
private String avatar;
@Schema(name = "sex", title = "0:女 1:男")