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;
|
}
|