|
|
@@ -0,0 +1,49 @@
|
|
|
+package com.zd.laboratory.domain.vo;
|
|
|
+
|
|
|
+import com.zd.model.annotation.Excel;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description 实验室上传模板
|
|
|
+ * @Author hzw
|
|
|
+ * @Date 2023/4/28 14:32
|
|
|
+ * @Version 2.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@ApiModel("实验室上传模板")
|
|
|
+public class SubjectUploadTemplate {
|
|
|
+
|
|
|
+ @Excel(name = "实验室名称",sort = 1, isRequired=true)
|
|
|
+ @ApiModelProperty("实验室名称")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ @Excel(name = "学院",sort = 2, isRequired=true)
|
|
|
+ @ApiModelProperty(value = "学院")
|
|
|
+ private String deptName;
|
|
|
+
|
|
|
+ @Excel(name = "房间号",sort = 3, isRequired=true)
|
|
|
+ @ApiModelProperty(value = "房间号")
|
|
|
+ private String room;
|
|
|
+
|
|
|
+ @Excel(name = "楼栋",sort = 4, isRequired=true)
|
|
|
+ @ApiModelProperty(value = "楼栋")
|
|
|
+ private String buildName;
|
|
|
+
|
|
|
+ @Excel(name = "楼层",sort = 5, isRequired=true)
|
|
|
+ @ApiModelProperty(value = "楼层")
|
|
|
+ private String floorName;
|
|
|
+
|
|
|
+ @Excel(name = "安全分类",sort = 6, isRequired=true)
|
|
|
+ @ApiModelProperty(value = "安全分类")
|
|
|
+ private String typeName;
|
|
|
+
|
|
|
+ @Excel(name = "安全分级",sort = 7, isRequired=true)
|
|
|
+ @ApiModelProperty(value = "安全分级")
|
|
|
+ private String classifiedName;
|
|
|
+
|
|
|
+ @Excel(name = "实验室类型",sort = 8, isRequired=true)
|
|
|
+ @ApiModelProperty(value = "实验室类型")
|
|
|
+ private String moldName;
|
|
|
+}
|