|
@@ -5,8 +5,10 @@ import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
import org.eco.common.excel.annotation.ExcelDictFormat;
|
|
|
import org.eco.common.excel.convert.ExcelDictConvert;
|
|
|
import lombok.Data;
|
|
|
+
|
|
|
import java.io.Serial;
|
|
|
import java.io.Serializable;
|
|
|
+
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
/**
|
|
@@ -25,29 +27,41 @@ public class FaultPersonnelImportVo implements Serializable {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
- /** 人员 */
|
|
|
- @ExcelProperty(value = "人员")
|
|
|
- private String personnel;
|
|
|
+ /**
|
|
|
+ * 人员
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "人员")
|
|
|
+ private String personnel;
|
|
|
|
|
|
- /** 岗位 */
|
|
|
- @ExcelProperty(value = "岗位")
|
|
|
- private String position;
|
|
|
+ /**
|
|
|
+ * 岗位
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "岗位")
|
|
|
+ private String position;
|
|
|
|
|
|
- /** 数量 */
|
|
|
- @ExcelProperty(value = "数量")
|
|
|
- private Integer quantity;
|
|
|
+ /**
|
|
|
+ * 数量
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "数量")
|
|
|
+ private Integer quantity;
|
|
|
|
|
|
- /** 职责 */
|
|
|
- @ExcelProperty(value = "职责")
|
|
|
- private String duties;
|
|
|
+ /**
|
|
|
+ * 职责
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "职责")
|
|
|
+ private String duties;
|
|
|
|
|
|
- /** 备注 */
|
|
|
- @ExcelProperty(value = "备注")
|
|
|
- private String remarks;
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "备注")
|
|
|
+ private String remarks;
|
|
|
|
|
|
- /** 删除标识(1删除 0未删除) */
|
|
|
- @ExcelProperty(value = "删除标识(1删除 0未删除)")
|
|
|
- private Integer delFlag;
|
|
|
+ /**
|
|
|
+ * 删除标识(1删除 0未删除)
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "删除标识(1删除 0未删除)")
|
|
|
+ private Integer delFlag;
|
|
|
|
|
|
|
|
|
}
|