SystemUserUpdateReqVO 559 B

123456789101112131415161718
  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.util.*;
  5. import javax.validation.constraints.*;
  6. @Schema(description = "管理后台 - 用户更新 Request VO")
  7. @Data
  8. @EqualsAndHashCode(callSuper = true)
  9. @ToString(callSuper = true)
  10. public class SystemUserUpdateReqVO extends SystemUserBaseVO {
  11. @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
  12. @NotNull(message = "编号不能为空")
  13. private Long id;
  14. }