|
@@ -0,0 +1,52 @@
|
|
|
|
|
+package cn.start.tz.module.pressure2.controller.admin.equippipe.vo;
|
|
|
|
|
+
|
|
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
|
+import cn.start.tz.framework.excel.core.annotations.DictFormat;
|
|
|
|
|
+import cn.start.tz.framework.excel.core.convert.DictConvert;
|
|
|
|
|
+
|
|
|
|
|
+@Schema(description = "管理后台 - 管道设备导出 VO")
|
|
|
|
|
+@Data
|
|
|
|
|
+@ExcelIgnoreUnannotated
|
|
|
|
|
+public class EquipPipeExportVO {
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "区域名称")
|
|
|
|
|
+ @ExcelProperty("区域")
|
|
|
|
|
+ private String equipDistrictName;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "街道名称")
|
|
|
|
|
+ @ExcelProperty("街道")
|
|
|
|
|
+ private String equipStreetName;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "工程号")
|
|
|
|
|
+ @ExcelProperty("工程号")
|
|
|
|
|
+ private String projectNo;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "工程名称")
|
|
|
|
|
+ @ExcelProperty("工程名称")
|
|
|
|
|
+ private String projectName;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "使用证号")
|
|
|
|
|
+ @ExcelProperty("使用证号")
|
|
|
|
|
+ private String certificateNo;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "单位名称")
|
|
|
|
|
+ @ExcelProperty("单位名称")
|
|
|
|
|
+ private String unitName;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "管道使用地址")
|
|
|
|
|
+ @ExcelProperty("管道使用地址")
|
|
|
|
|
+ private String pipeAddress;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "管道类别")
|
|
|
|
|
+ @ExcelProperty(value = "管道类别", converter = DictConvert.class)
|
|
|
|
|
+ @DictFormat("PIPE_TYPE")
|
|
|
|
|
+ private String pipeCategory;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "使用状态")
|
|
|
|
|
+ @ExcelProperty(value = "使用状态", converter = DictConvert.class)
|
|
|
|
|
+ @DictFormat("system_equip_boiler_status")
|
|
|
|
|
+ private String useStatus;
|
|
|
|
|
+}
|