沙钢智慧能源系统后端代码
houzhongjian
2024-10-09 97edd72e5e6dbb134cedae4b72c95be8c948c5ec
提交 | 用户 | 时间
97edd7 1 package com.iailab.module.shasteel.controller.admin.demo.vo;
H 2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 import javax.validation.constraints.NotNull;
7
8 /**
9  * @author PanZhibao
10  * @Description
11  * @createTime 2024年08月17日
12  */
13 @Schema(description = "管理后台 - 演示创建/修改 Request VO")
14 @Data
15 public class DemoSaveReqVO {
16
17     @Schema(description = "ID")
18     private Long id;
19
20     @Schema(description = "演示编号", requiredMode = Schema.RequiredMode.REQUIRED)
21     @NotNull(message = "演示编号不能为空")
22     private String code;
23
24     @Schema(description = "演示名称", requiredMode = Schema.RequiredMode.REQUIRED)
25     @NotNull(message = "演示名称不能为空")
26     private String name;
27
28     @Schema(description = "演示图标", example = "")
29     private String icon;
30
31     @Schema(description = "排序", example = "")
32     private Integer orderNum;
33
34     @Schema(description = "状态", example = "")
35     private Integer status;
36
37     @Schema(description = "备注", example = "")
38     private String remark;
39 }