SystemUserRespVO 477 B

12345678910111213141516
  1. package cn.iocoder.yudao.module.system.controller.admin.user.vo;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.*;
  4. import java.time.LocalDateTime;
  5. @Schema(description = "管理后台 - 用户 Response VO")
  6. @Data
  7. @EqualsAndHashCode(callSuper = true)
  8. @ToString(callSuper = true)
  9. public class SystemUserRespVO extends SystemUserBaseVO {
  10. @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
  11. private Long id;
  12. }