|
@@ -0,0 +1,98 @@
|
|
|
+
|
|
|
+ * Author: wangjian
|
|
|
+ * 生成entity
|
|
|
+ */
|
|
|
+package com.tofly.dataCheck.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ * @author hs
|
|
|
+ * @date Wed Nov 23 00:00:00 CST 2022
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@ApiModel
|
|
|
+public class DataSummarizationVo extends Model<DataSummarizationVo> {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "所属项目")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "行政区",required = true)
|
|
|
+ private String area;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "测区")
|
|
|
+ private String testingZone;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "道路名称")
|
|
|
+ private String roadName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "起点编码")
|
|
|
+ private String startCode;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "终点编码")
|
|
|
+ private String endCode;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "管道长度")
|
|
|
+ private String pipeLength;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "断面数据1")
|
|
|
+ private String sectionDataOne;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "断面数据2")
|
|
|
+ private String sectionDataTwo;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否下达")
|
|
|
+ private String isOrder;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "管段属性")
|
|
|
+ private String pipeProperties;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "判读预处理长度")
|
|
|
+ private String pdCheckLength;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "暂无法预处理大分类")
|
|
|
+ private String noHandleBigType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "暂无法预处理长度")
|
|
|
+ private String noHandleLength;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "暂无法预处理上报时间")
|
|
|
+ private String noHandleTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "水位确认时间")
|
|
|
+ private String waterLevelSureTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "水位20CM及以上长度")
|
|
|
+ private String waterLevelUp;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "水位20CM以下长度")
|
|
|
+ private String waterLevelDown;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "视频显示时间")
|
|
|
+ private String videoTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "视频显示断面数据1")
|
|
|
+ private String videoSectionDataOne;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "视频显示断面数据2")
|
|
|
+ private String videoSectionDataTwo;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "判读检测长度")
|
|
|
+ private String pdCheckLength1;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "暂无法预处理长度")
|
|
|
+ private String noHandleLength1;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否检测")
|
|
|
+ private String isCheck;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "雨水任务单")
|
|
|
+ private String rainTask;
|
|
|
+
|
|
|
+}
|