选煤厂安全管理平台后台代码
houzhongjian
2024-11-22 c18e5a14aa49877a49a07ffd8f3b3917d5aca55a
提交 | 用户 | 时间
c18e5a 1 package com.iailab.module.sms.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 }