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