liaoyitao преди 3 месеца
родител
ревизия
dfdd12c398
променени са 29 файла, в които са добавени 926 реда и са изтрити 104 реда
  1. 35 35
      src/main/java/com/lqkj/camera/util/TimerUtil.java
  2. 44 8
      src/main/java/com/lqkj/info/entity/ElevatorInfo.java
  3. 48 12
      src/main/java/com/lqkj/info/entity/EquipmentInfo.java
  4. 36 0
      src/main/java/com/lqkj/info/entity/OrganizationInfo.java
  5. 57 9
      src/main/java/com/lqkj/info/entity/PlanInfo.java
  6. 36 9
      src/main/java/com/lqkj/info/entity/PolicyInfo.java
  7. 3 0
      src/main/java/com/lqkj/ioc/controller/EconomicDevelopmentController.java
  8. 49 0
      src/main/java/com/lqkj/ioc/controller/SecurityPerceptionController.java
  9. 34 0
      src/main/java/com/lqkj/ioc/controller/SmartParkController.java
  10. 3 0
      src/main/java/com/lqkj/ioc/controller/SupportResourcesController.java
  11. 3 0
      src/main/java/com/lqkj/ioc/controller/TrafficSystemController.java
  12. 39 0
      src/main/java/com/lqkj/ioc/mapper/SecurityPerceptionMapper.java
  13. 50 0
      src/main/java/com/lqkj/ioc/mapper/SmartParkMapper.java
  14. 36 0
      src/main/java/com/lqkj/ioc/service/SecurityPerceptionService.java
  15. 25 0
      src/main/java/com/lqkj/ioc/service/SmartParkService.java
  16. 12 0
      src/main/java/com/lqkj/system/entity/SysDictData.java
  17. 22 11
      src/main/java/com/lqkj/type/entity/OrganizationType.java
  18. 1 1
      src/main/resources/db/migration/V1_1__init.sql
  19. 1 1
      src/main/resources/db/migration/V1_2__20230202.sql
  20. 224 6
      src/main/resources/db/migration/V1_5__20241111_menu.sql
  21. 3 1
      src/main/resources/db/migration/V1_6__20241126_icon.sql
  22. 74 0
      src/main/resources/db/migration/V1_7__20241202.sql
  23. 16 1
      src/main/resources/mapper/info/ElevatorInfoMapper.xml
  24. 18 4
      src/main/resources/mapper/info/EquipmentInfoMapper.xml
  25. 16 1
      src/main/resources/mapper/info/OrganizationInfoMapper.xml
  26. 17 1
      src/main/resources/mapper/info/PlanInfoMapper.xml
  27. 14 2
      src/main/resources/mapper/info/PolicyInfoMapper.xml
  28. 5 1
      src/main/resources/mapper/system/SysDictDataMapper.xml
  29. 5 1
      src/main/resources/mapper/type/OrganizationTypeMapper.xml

+ 35 - 35
src/main/java/com/lqkj/camera/util/TimerUtil.java

@@ -33,40 +33,40 @@ public class TimerUtil implements CommandLineRunner {
33 33
     private CameraInfoService cameraInfoService;
34 34
     @Override
35 35
     public void run(String... args) throws Exception {
36
-        timer = new Timer("cameraTimer");
37
-        timer.schedule(new TimerTask() {
38
-            @Override
39
-            public void run() {
40
-
41
-                if (flag){
42
-                    logger.info("******   执行定时任务开始自动推流      BEGIN   ******");
43
-                    flag = false;
44
-                    List<CameraInfo> cameraInfos = cameraInfoService.selectCameraInfoList(null);
45
-                    for (CameraInfo cameraInfo : cameraInfos){
46
-                        CameraVo cameraVo = new CameraVo();
47
-                        cameraVo.setRtsp(cameraInfo.getUrl());
48
-                        if (!CameraCacheUtil.STREAMTHREAD.containsKey(cameraInfo.getCameraId())){
49
-                            String rtmp = "rtmp://" + cameraConfig.getPushHost() + ":" + cameraConfig.getPushPort() + "/hls/" + cameraInfo.getCameraId();
50
-                            String httpHls = cameraConfig.getHttpFlvHost() + "/hls/" + cameraInfo.getCameraId() + ".m3u8";
51
-                            cameraVo.setToken(cameraInfo.getCameraId());
52
-                            cameraVo.setCount(1);
53
-                            cameraVo.setOpenTime(new Date());
54
-                            cameraVo.setHttpFlv(httpHls);
55
-                            cameraVo.setRtmp(rtmp);
56
-                            CameraThread.MyRunnable job = new CameraThread.MyRunnable(cameraVo);
57
-                            CameraThread.MyRunnable.es.execute(job);
58
-                            CameraCacheUtil.STREAMTHREAD.put(cameraInfo.getCameraId(),job);
59
-                            try {
60
-                                Thread.sleep(15000);
61
-                            } catch (InterruptedException e) {
62
-                                e.printStackTrace();
63
-                            }
64
-                        }
65
-                    }
66
-                    flag = true;
67
-                    logger.info("******   执行定时任务开始自动推流      END   ******");
68
-                }
69
-            }
70
-        }, 1, 1000 * 60);
36
+//        timer = new Timer("cameraTimer");
37
+//        timer.schedule(new TimerTask() {
38
+//            @Override
39
+//            public void run() {
40
+//
41
+//                if (flag){
42
+//                    logger.info("******   执行定时任务开始自动推流      BEGIN   ******");
43
+//                    flag = false;
44
+//                    List<CameraInfo> cameraInfos = cameraInfoService.selectCameraInfoList(null);
45
+//                    for (CameraInfo cameraInfo : cameraInfos){
46
+//                        CameraVo cameraVo = new CameraVo();
47
+//                        cameraVo.setRtsp(cameraInfo.getUrl());
48
+//                        if (!CameraCacheUtil.STREAMTHREAD.containsKey(cameraInfo.getCameraId())){
49
+//                            String rtmp = "rtmp://" + cameraConfig.getPushHost() + ":" + cameraConfig.getPushPort() + "/hls/" + cameraInfo.getCameraId();
50
+//                            String httpHls = cameraConfig.getHttpFlvHost() + "/hls/" + cameraInfo.getCameraId() + ".m3u8";
51
+//                            cameraVo.setToken(cameraInfo.getCameraId());
52
+//                            cameraVo.setCount(1);
53
+//                            cameraVo.setOpenTime(new Date());
54
+//                            cameraVo.setHttpFlv(httpHls);
55
+//                            cameraVo.setRtmp(rtmp);
56
+//                            CameraThread.MyRunnable job = new CameraThread.MyRunnable(cameraVo);
57
+//                            CameraThread.MyRunnable.es.execute(job);
58
+//                            CameraCacheUtil.STREAMTHREAD.put(cameraInfo.getCameraId(),job);
59
+//                            try {
60
+//                                Thread.sleep(15000);
61
+//                            } catch (InterruptedException e) {
62
+//                                e.printStackTrace();
63
+//                            }
64
+//                        }
65
+//                    }
66
+//                    flag = true;
67
+//                    logger.info("******   执行定时任务开始自动推流      END   ******");
68
+//                }
69
+//            }
70
+//        }, 1, 1000 * 60);
71 71
     }
72 72
 }

+ 44 - 8
src/main/java/com/lqkj/info/entity/ElevatorInfo.java

@@ -39,6 +39,15 @@ public class ElevatorInfo extends BaseEntity
39 39
     @Excel(name = "保养次数")
40 40
     private Integer upkeepNum;
41 41
 
42
+    /** 电梯类型 */
43
+    private Integer type;
44
+
45
+    /** 运行楼层 */
46
+    private String runFloor;
47
+
48
+    /** 运行时间 */
49
+    private String runTime;
50
+
42 51
     public void setElevatorId(Integer elevatorId) 
43 52
     {
44 53
         this.elevatorId = elevatorId;
@@ -94,15 +103,42 @@ public class ElevatorInfo extends BaseEntity
94 103
         return upkeepNum;
95 104
     }
96 105
 
106
+    public Integer getType() {
107
+        return type;
108
+    }
109
+
110
+    public void setType(Integer type) {
111
+        this.type = type;
112
+    }
113
+
114
+    public String getRunFloor() {
115
+        return runFloor;
116
+    }
117
+
118
+    public void setRunFloor(String runFloor) {
119
+        this.runFloor = runFloor;
120
+    }
121
+
122
+    public String getRunTime() {
123
+        return runTime;
124
+    }
125
+
126
+    public void setRunTime(String runTime) {
127
+        this.runTime = runTime;
128
+    }
129
+
97 130
     @Override
98 131
     public String toString() {
99
-        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
100
-            .append("elevatorId", getElevatorId())
101
-            .append("elevatorCode", getElevatorCode())
102
-            .append("buildingId", getBuildingId())
103
-            .append("status", getStatus())
104
-            .append("elevatorName", getElevatorName())
105
-            .append("upkeepNum", getUpkeepNum())
106
-            .toString();
132
+        return "ElevatorInfo{" +
133
+                "elevatorId=" + elevatorId +
134
+                ", elevatorCode='" + elevatorCode + '\'' +
135
+                ", buildingId=" + buildingId +
136
+                ", status=" + status +
137
+                ", elevatorName='" + elevatorName + '\'' +
138
+                ", upkeepNum=" + upkeepNum +
139
+                ", type=" + type +
140
+                ", runFloor='" + runFloor + '\'' +
141
+                ", runTime='" + runTime + '\'' +
142
+                '}';
107 143
     }
108 144
 }

+ 48 - 12
src/main/java/com/lqkj/info/entity/EquipmentInfo.java

@@ -53,6 +53,15 @@ public class EquipmentInfo extends BaseEntity
53 53
     @Excel(name = "状态")
54 54
     private Integer status;
55 55
 
56
+    /** 使用状态 */
57
+    private Integer deviceStatus;
58
+
59
+    /** 设备编号 */
60
+    private String equipCode;
61
+
62
+    /** 品牌 */
63
+    private Integer brand;
64
+
56 65
     public void setEquipmentId(Integer equipmentId) 
57 66
     {
58 67
         this.equipmentId = equipmentId;
@@ -144,19 +153,46 @@ public class EquipmentInfo extends BaseEntity
144 153
         return status;
145 154
     }
146 155
 
156
+    public Integer getDeviceStatus() {
157
+        return deviceStatus;
158
+    }
159
+
160
+    public void setDeviceStatus(Integer deviceStatus) {
161
+        this.deviceStatus = deviceStatus;
162
+    }
163
+
164
+    public String getEquipCode() {
165
+        return equipCode;
166
+    }
167
+
168
+    public void setEquipCode(String equipCode) {
169
+        this.equipCode = equipCode;
170
+    }
171
+
172
+    public Integer getBrand() {
173
+        return brand;
174
+    }
175
+
176
+    public void setBrand(Integer brand) {
177
+        this.brand = brand;
178
+    }
179
+
147 180
     @Override
148 181
     public String toString() {
149
-        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
150
-            .append("equipmentId", getEquipmentId())
151
-            .append("typeId", getTypeId())
152
-            .append("roomId", getRoomId())
153
-            .append("buildingId", getBuildingId())
154
-            .append("areaId", getAreaId())
155
-            .append("equipmentName", getEquipmentName())
156
-            .append("lngLat", getLngLat())
157
-            .append("rasterLngLat", getRasterLngLat())
158
-            .append("typeName", getTypeName())
159
-            .append("status", getStatus())
160
-            .toString();
182
+        return "EquipmentInfo{" +
183
+                "equipmentId=" + equipmentId +
184
+                ", typeId=" + typeId +
185
+                ", roomId=" + roomId +
186
+                ", buildingId=" + buildingId +
187
+                ", areaId=" + areaId +
188
+                ", equipmentName='" + equipmentName + '\'' +
189
+                ", lngLat='" + lngLat + '\'' +
190
+                ", rasterLngLat='" + rasterLngLat + '\'' +
191
+                ", typeName='" + typeName + '\'' +
192
+                ", status=" + status +
193
+                ", deviceStatus=" + deviceStatus +
194
+                ", equipCode='" + equipCode + '\'' +
195
+                ", brand=" + brand +
196
+                '}';
161 197
     }
162 198
 }

+ 36 - 0
src/main/java/com/lqkj/info/entity/OrganizationInfo.java

@@ -36,6 +36,12 @@ public class OrganizationInfo extends BaseEntity
36 36
     @Excel(name = "区域id")
37 37
     private Integer areaId;
38 38
 
39
+    /** 产业类型 */
40
+    private Integer industryType;
41
+
42
+    /** 户型 */
43
+    private Integer houseTypeId;
44
+
39 45
     /** 名称 */
40 46
     @Excel(name = "名称")
41 47
     private String organizationName;
@@ -79,6 +85,9 @@ public class OrganizationInfo extends BaseEntity
79 85
     /** 宣传视频 */
80 86
     private String audio;
81 87
 
88
+    /** 楼层 */
89
+    private Integer floor;
90
+
82 91
     public String getAudio() {
83 92
         return audio;
84 93
     }
@@ -241,6 +250,30 @@ public class OrganizationInfo extends BaseEntity
241 250
         return employeNum;
242 251
     }
243 252
 
253
+    public Integer getIndustryType() {
254
+        return industryType;
255
+    }
256
+
257
+    public void setIndustryType(Integer industryType) {
258
+        this.industryType = industryType;
259
+    }
260
+
261
+    public Integer getFloor() {
262
+        return floor;
263
+    }
264
+
265
+    public void setFloor(Integer floor) {
266
+        this.floor = floor;
267
+    }
268
+
269
+    public Integer getHouseTypeId() {
270
+        return houseTypeId;
271
+    }
272
+
273
+    public void setHouseTypeId(Integer houseTypeId) {
274
+        this.houseTypeId = houseTypeId;
275
+    }
276
+
244 277
     @Override
245 278
     public String toString() {
246 279
         return "OrganizationInfo{" +
@@ -249,6 +282,8 @@ public class OrganizationInfo extends BaseEntity
249 282
                 ", roomId=" + roomId +
250 283
                 ", buildingId=" + buildingId +
251 284
                 ", areaId=" + areaId +
285
+                ", industryType=" + industryType +
286
+                ", houseTypeId=" + houseTypeId +
252 287
                 ", organizationName='" + organizationName + '\'' +
253 288
                 ", intro='" + intro + '\'' +
254 289
                 ", lngLat='" + lngLat + '\'' +
@@ -262,6 +297,7 @@ public class OrganizationInfo extends BaseEntity
262 297
                 ", enterTime=" + enterTime +
263 298
                 ", employeNum=" + employeNum +
264 299
                 ", audio='" + audio + '\'' +
300
+                ", floor=" + floor +
265 301
                 '}';
266 302
     }
267 303
 }

+ 57 - 9
src/main/java/com/lqkj/info/entity/PlanInfo.java

@@ -42,6 +42,18 @@ public class PlanInfo extends BaseEntity
42 42
     @Excel(name = "面积")
43 43
     private Integer acreage;
44 44
 
45
+    /** 成本 */
46
+    private String cost;
47
+
48
+    /** 收益 */
49
+    private String earnings;
50
+
51
+    /** 总占比 */
52
+    private String totalPct;
53
+
54
+    /** 风险*/
55
+    private String risk;
56
+
45 57
     public void setPlanId(Integer planId) 
46 58
     {
47 59
         this.planId = planId;
@@ -106,16 +118,52 @@ public class PlanInfo extends BaseEntity
106 118
         return acreage;
107 119
     }
108 120
 
121
+    public String getCost() {
122
+        return cost;
123
+    }
124
+
125
+    public void setCost(String cost) {
126
+        this.cost = cost;
127
+    }
128
+
129
+    public String getEarnings() {
130
+        return earnings;
131
+    }
132
+
133
+    public void setEarnings(String earnings) {
134
+        this.earnings = earnings;
135
+    }
136
+
137
+    public String getTotalPct() {
138
+        return totalPct;
139
+    }
140
+
141
+    public void setTotalPct(String totalPct) {
142
+        this.totalPct = totalPct;
143
+    }
144
+
145
+    public String getRisk() {
146
+        return risk;
147
+    }
148
+
149
+    public void setRisk(String risk) {
150
+        this.risk = risk;
151
+    }
152
+
109 153
     @Override
110 154
     public String toString() {
111
-        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
112
-            .append("planId", getPlanId())
113
-            .append("areaId", getAreaId())
114
-            .append("typeId", getTypeId())
115
-            .append("planName", getPlanName())
116
-            .append("content", getContent())
117
-            .append("colour", getColour())
118
-            .append("acreage", getAcreage())
119
-            .toString();
155
+        return "PlanInfo{" +
156
+                "planId=" + planId +
157
+                ", areaId=" + areaId +
158
+                ", typeId=" + typeId +
159
+                ", planName='" + planName + '\'' +
160
+                ", content='" + content + '\'' +
161
+                ", colour='" + colour + '\'' +
162
+                ", acreage=" + acreage +
163
+                ", cost='" + cost + '\'' +
164
+                ", earnings='" + earnings + '\'' +
165
+                ", totalPct='" + totalPct + '\'' +
166
+                ", risk='" + risk + '\'' +
167
+                '}';
120 168
     }
121 169
 }

+ 36 - 9
src/main/java/com/lqkj/info/entity/PolicyInfo.java

@@ -1,9 +1,11 @@
1 1
 package com.lqkj.info.entity;
2 2
 
3
-import org.apache.commons.lang3.builder.ToStringBuilder;
4
-import org.apache.commons.lang3.builder.ToStringStyle;
3
+
5 4
 import com.lqkj.common.annotation.Excel;
6 5
 import com.lqkj.common.core.model.BaseEntity;
6
+import org.springframework.data.annotation.Transient;
7
+
8
+
7 9
 
8 10
 /**
9 11
  * 政策信息对象 policy_info
@@ -18,6 +20,9 @@ public class PolicyInfo extends BaseEntity
18 20
     /** 政策id */
19 21
     private Integer policyId;
20 22
 
23
+    /** 类型id */
24
+    private Integer typeId;
25
+
21 26
     /** 政策名称 */
22 27
     @Excel(name = "政策名称")
23 28
     private String policyName;
@@ -29,6 +34,11 @@ public class PolicyInfo extends BaseEntity
29 34
     @Excel(name = "文件名")
30 35
     private String fileName;
31 36
 
37
+
38
+    @Transient
39
+    private String orderBy;
40
+
41
+
32 42
     public void setPolicyId(Integer policyId) 
33 43
     {
34 44
         this.policyId = policyId;
@@ -66,14 +76,31 @@ public class PolicyInfo extends BaseEntity
66 76
         return fileName;
67 77
     }
68 78
 
79
+    public Integer getTypeId() {
80
+        return typeId;
81
+    }
82
+
83
+    public void setTypeId(Integer typeId) {
84
+        this.typeId = typeId;
85
+    }
86
+
87
+    public String getOrderBy() {
88
+        return orderBy;
89
+    }
90
+
91
+    public void setOrderBy(String orderBy) {
92
+        this.orderBy = orderBy;
93
+    }
94
+
69 95
     @Override
70 96
     public String toString() {
71
-        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
72
-            .append("policyId", getPolicyId())
73
-            .append("policyName", getPolicyName())
74
-            .append("url", getUrl())
75
-            .append("createTime", getCreateTime())
76
-            .append("fileName", getFileName())
77
-            .toString();
97
+        return "PolicyInfo{" +
98
+                "policyId=" + policyId +
99
+                ", typeId=" + typeId +
100
+                ", policyName='" + policyName + '\'' +
101
+                ", url='" + url + '\'' +
102
+                ", fileName='" + fileName + '\'' +
103
+                ", orderBy='" + orderBy + '\'' +
104
+                '}';
78 105
     }
79 106
 }

+ 3 - 0
src/main/java/com/lqkj/ioc/controller/EconomicDevelopmentController.java

@@ -11,6 +11,9 @@ import org.springframework.web.bind.annotation.RequestMapping;
11 11
 import org.springframework.web.bind.annotation.RestController;
12 12
 
13 13
 
14
+/**
15
+ * 城市推荐-经济发展
16
+ */
14 17
 @Api(tags = {"城市推荐-经济发展"})
15 18
 @RestController
16 19
 @RequestMapping("/ioc/cityRecommendation/economicDevelopment")

+ 49 - 0
src/main/java/com/lqkj/ioc/controller/SecurityPerceptionController.java

@@ -0,0 +1,49 @@
1
+package com.lqkj.ioc.controller;
2
+
3
+
4
+import com.lqkj.common.core.model.ResultUtil;
5
+import com.lqkj.ioc.service.SecurityPerceptionService;
6
+import io.swagger.annotations.Api;
7
+import io.swagger.annotations.ApiOperation;
8
+import org.springframework.beans.factory.annotation.Autowired;
9
+import org.springframework.stereotype.Controller;
10
+import org.springframework.web.bind.annotation.GetMapping;
11
+import org.springframework.web.bind.annotation.RequestMapping;
12
+import org.springframework.web.bind.annotation.RestController;
13
+
14
+@Api(tags = {"安防感知"})
15
+@RestController
16
+@RequestMapping("/ioc/securityPerception")
17
+public class SecurityPerceptionController {
18
+
19
+    @Autowired
20
+    private SecurityPerceptionService securityPerceptionService;
21
+
22
+    @ApiOperation("智慧电梯-电梯基本情况")
23
+    @GetMapping("/getElevatorBasicInfo")
24
+    public ResultUtil getElevatorBasicInfo(){
25
+        return ResultUtil.success(securityPerceptionService.getElevatorBasicInfo());
26
+    }
27
+
28
+    @ApiOperation("智慧电梯-电梯维修统计")
29
+    @GetMapping("/getElevatorRepairStats")
30
+    public ResultUtil getElevatorRepairStats(){
31
+        return ResultUtil.success(securityPerceptionService.getElevatorRepairStats());
32
+    }
33
+
34
+
35
+    @ApiOperation("智慧电梯-电梯告警分布")
36
+    @GetMapping("/elevatorAlarmDistribution")
37
+    public ResultUtil elevatorAlarmDistribution(){
38
+        return ResultUtil.success(securityPerceptionService.elevatorAlarmDistribution());
39
+    }
40
+
41
+    @ApiOperation("停车场-充电桩使用品牌")
42
+    @GetMapping("/countChargingStationBrands")
43
+    public ResultUtil countChargingStationBrands(){
44
+        return ResultUtil.success(securityPerceptionService.countChargingStationBrands());
45
+    }
46
+
47
+
48
+
49
+}

+ 34 - 0
src/main/java/com/lqkj/ioc/controller/SmartParkController.java

@@ -0,0 +1,34 @@
1
+package com.lqkj.ioc.controller;
2
+
3
+
4
+import com.lqkj.common.core.model.ResultUtil;
5
+import com.lqkj.ioc.service.SmartParkService;
6
+import io.swagger.annotations.Api;
7
+import io.swagger.annotations.ApiOperation;
8
+import org.springframework.beans.factory.annotation.Autowired;
9
+import org.springframework.web.bind.annotation.GetMapping;
10
+import org.springframework.web.bind.annotation.RequestMapping;
11
+import org.springframework.web.bind.annotation.RestController;
12
+
13
+@Api(tags = {"智能园区"})
14
+@RestController
15
+@RequestMapping("/ioc/smartPark")
16
+public class SmartParkController {
17
+
18
+    @Autowired
19
+    private SmartParkService smartParkService;
20
+
21
+
22
+    @ApiOperation("智慧园区-园区新增入驻情况")
23
+    @GetMapping("/addParkNewTenant")
24
+    public ResultUtil addParkNewTenant(){
25
+        return ResultUtil.success(smartParkService.addParkNewTenant());
26
+    }
27
+
28
+
29
+    @ApiOperation("智慧园区-园区消防")
30
+    @GetMapping("/getParkFireProtectionInfo")
31
+    public ResultUtil getParkFireProtectionInfo(){
32
+        return ResultUtil.success(smartParkService.getParkFireProtectionInfo());
33
+    }
34
+}

+ 3 - 0
src/main/java/com/lqkj/ioc/controller/SupportResourcesController.java

@@ -10,6 +10,9 @@ import org.springframework.web.bind.annotation.GetMapping;
10 10
 import org.springframework.web.bind.annotation.RequestMapping;
11 11
 import org.springframework.web.bind.annotation.RestController;
12 12
 
13
+/**
14
+ * 配套资源
15
+ */
13 16
 @Api(tags = {"配套资源"})
14 17
 @RestController
15 18
 @RequestMapping("/ioc/SupportResources")

+ 3 - 0
src/main/java/com/lqkj/ioc/controller/TrafficSystemController.java

@@ -10,6 +10,9 @@ import org.springframework.web.bind.annotation.GetMapping;
10 10
 import org.springframework.web.bind.annotation.RequestMapping;
11 11
 import org.springframework.web.bind.annotation.RestController;
12 12
 
13
+/**
14
+ * 交通系统
15
+ */
13 16
 @Api(tags = {"交通系统"})
14 17
 @RestController
15 18
 @RequestMapping("/ioc/trafficSystem")

+ 39 - 0
src/main/java/com/lqkj/ioc/mapper/SecurityPerceptionMapper.java

@@ -0,0 +1,39 @@
1
+package com.lqkj.ioc.mapper;
2
+
3
+
4
+import org.apache.ibatis.annotations.Mapper;
5
+import org.apache.ibatis.annotations.Select;
6
+
7
+import java.util.List;
8
+import java.util.Map;
9
+
10
+@Mapper
11
+public interface SecurityPerceptionMapper {
12
+
13
+
14
+
15
+    @Select("SELECT sdd.dict_label, COUNT(ei.elevator_id) " +
16
+            "FROM sys_dict_data sdd " +
17
+            "LEFT JOIN elevator_info ei ON sdd.dict_value::integer = ei.type " +
18
+            "WHERE sdd.dict_type = 'elevator_type' GROUP BY sdd.dict_label"
19
+    )
20
+    List<Map<String, Object>> getElevatorBasicInfo();
21
+
22
+    @Select("SELECT sdd.dict_label, COUNT(ei.elevator_id) " +
23
+            "FROM sys_dict_data sdd " +
24
+            "LEFT JOIN elevator_info ei ON sdd.dict_value::integer = ei.status " +
25
+            "WHERE sdd.dict_type = 'elevator_info_status' GROUP BY sdd.dict_code")
26
+    List<Map<String, Object>> getElevatorRepairStats();
27
+
28
+    @Select("SELECT sdd.dict_label, COUNT(ei.elevator_id) " +
29
+            "FROM sys_dict_data sdd " +
30
+            "LEFT JOIN elevator_info ei ON sdd.dict_value::integer = ei.status " +
31
+            "WHERE sdd.dict_type = 'elevator_info_status' and sdd.dict_value IN ('3', '7', '8') GROUP BY sdd.dict_code")
32
+    List<Map<String, Object>> elevatorAlarmDistribution();
33
+
34
+    @Select("SELECT sdd.dict_label, COUNT(ei.equipment_id) " +
35
+            "FROM sys_dict_data sdd " +
36
+            "LEFT JOIN equipment_info ei ON sdd.dict_value::integer = ei.brand " +
37
+            "WHERE sdd.dict_type = 'equip_brand' GROUP BY sdd.dict_code")
38
+    List<Map<String, Object>> countChargingStationBrands();
39
+}

+ 50 - 0
src/main/java/com/lqkj/ioc/mapper/SmartParkMapper.java

@@ -0,0 +1,50 @@
1
+package com.lqkj.ioc.mapper;
2
+
3
+
4
+import org.apache.ibatis.annotations.Mapper;
5
+import org.apache.ibatis.annotations.Select;
6
+
7
+import java.util.List;
8
+import java.util.Map;
9
+
10
+@Mapper
11
+public interface SmartParkMapper {
12
+
13
+    @Select("WITH months AS ( " +
14
+            "    SELECT generate_series( " +
15
+            "        date_trunc('year', CURRENT_DATE) - INTERVAL '1 year',  " +
16
+            "        date_trunc('month', CURRENT_DATE),  " +
17
+            "        '1 month' :: INTERVAL " +
18
+            "    ) AS MONTH " +
19
+            ") " +
20
+            "SELECT  " +
21
+            "    CASE  " +
22
+            "        WHEN EXTRACT(YEAR FROM M.MONTH) = EXTRACT(YEAR FROM CURRENT_DATE) THEN '今年' " +
23
+            "        WHEN EXTRACT(YEAR FROM M.MONTH) = EXTRACT(YEAR FROM CURRENT_DATE) - 1 THEN '去年' " +
24
+            "        ELSE EXTRACT(YEAR FROM M.MONTH)::TEXT " +
25
+            "    END AS YEAR, " +
26
+            "    EXTRACT(MONTH FROM M.MONTH) AS MONTH, " +
27
+            "    COALESCE(COUNT(C.organization_id), 0) AS join_count " +
28
+            "FROM months M " +
29
+            "LEFT JOIN organization_info C  " +
30
+            "    ON EXTRACT(YEAR FROM C.enter_time) = EXTRACT(YEAR FROM M.MONTH) " +
31
+            "    AND EXTRACT(MONTH FROM C.enter_time) = EXTRACT(MONTH FROM M.MONTH) " +
32
+            "GROUP BY YEAR, MONTH " +
33
+            "ORDER BY YEAR DESC, MONTH;")
34
+    List<Map<String, Object>> addParkNewTenant();
35
+
36
+
37
+    @Select("WITH months AS ( SELECT generate_series(date_trunc('year', CURRENT_DATE), " +
38
+            "date_trunc('year', CURRENT_DATE) + interval '1 year' - interval '1 month', " +
39
+            "'1 month'::interval) AS month) " +
40
+            "SELECT " +
41
+            "EXTRACT(MONTH FROM m.month) AS month, " +
42
+            "COALESCE(COUNT(r.forewarning_id), 0) AS total, " +
43
+            "COALESCE(COUNT(CASE WHEN r.is_resolve = 't' THEN 't' END), 0) AS resolved  " +
44
+            "FROM months m " +
45
+            "LEFT JOIN forewarning_info r " +
46
+            "ON EXTRACT(MONTH FROM r.create_time) = EXTRACT(MONTH FROM m.month) " +
47
+            "AND EXTRACT(YEAR FROM r.create_time) = EXTRACT(YEAR FROM CURRENT_DATE)  " +
48
+            "GROUP BY m.month ORDER BY month;")
49
+    List<Map<String, Object>> getParkFireProtectionInfo();
50
+}

+ 36 - 0
src/main/java/com/lqkj/ioc/service/SecurityPerceptionService.java

@@ -0,0 +1,36 @@
1
+package com.lqkj.ioc.service;
2
+
3
+
4
+import com.lqkj.ioc.mapper.SecurityPerceptionMapper;
5
+import org.springframework.beans.factory.annotation.Autowired;
6
+import org.springframework.stereotype.Service;
7
+
8
+import java.util.List;
9
+import java.util.Map;
10
+
11
+@Service
12
+public class SecurityPerceptionService {
13
+
14
+    @Autowired
15
+    private SecurityPerceptionMapper securityPerceptionMapper;
16
+
17
+
18
+    public List<Map<String, Object>> getElevatorBasicInfo() {
19
+
20
+        return securityPerceptionMapper.getElevatorBasicInfo();
21
+    }
22
+
23
+    public List<Map<String, Object>> getElevatorRepairStats() {
24
+
25
+        return securityPerceptionMapper.getElevatorRepairStats();
26
+    }
27
+
28
+    public List<Map<String, Object>> elevatorAlarmDistribution() {
29
+
30
+        return securityPerceptionMapper.elevatorAlarmDistribution();
31
+    }
32
+
33
+    public List<Map<String, Object>> countChargingStationBrands() {
34
+        return securityPerceptionMapper.countChargingStationBrands();
35
+    }
36
+}

+ 25 - 0
src/main/java/com/lqkj/ioc/service/SmartParkService.java

@@ -0,0 +1,25 @@
1
+package com.lqkj.ioc.service;
2
+
3
+
4
+import com.lqkj.ioc.mapper.SmartParkMapper;
5
+import org.springframework.beans.factory.annotation.Autowired;
6
+import org.springframework.stereotype.Service;
7
+
8
+import java.util.List;
9
+import java.util.Map;
10
+
11
+@Service
12
+public class SmartParkService {
13
+
14
+    @Autowired
15
+    private SmartParkMapper smartParkMapper;
16
+
17
+
18
+    public List<Map<String,Object>> addParkNewTenant() {
19
+        return smartParkMapper.addParkNewTenant();
20
+    }
21
+
22
+    public List<Map<String,Object>> getParkFireProtectionInfo() {
23
+        return smartParkMapper.getParkFireProtectionInfo();
24
+    }
25
+}

+ 12 - 0
src/main/java/com/lqkj/system/entity/SysDictData.java

@@ -52,6 +52,9 @@ public class SysDictData extends BaseEntity
52 52
     @Excel(name = "状态", readConverterExp = "true=正常,false=停用")
53 53
     private Boolean status;
54 54
 
55
+    /** 菜单图标 */
56
+    private String icon;
57
+
55 58
     public Integer getDictCode()
56 59
     {
57 60
         return dictCode;
@@ -144,6 +147,14 @@ public class SysDictData extends BaseEntity
144 147
         this.status = status;
145 148
     }
146 149
 
150
+    public String getIcon() {
151
+        return icon;
152
+    }
153
+
154
+    public void setIcon(String icon) {
155
+        this.icon = icon;
156
+    }
157
+
147 158
     @Override
148 159
     public String toString() {
149 160
         return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
@@ -161,6 +172,7 @@ public class SysDictData extends BaseEntity
161 172
                 .append("updateBy", getUpdateBy())
162 173
                 .append("updateTime", getUpdateTime())
163 174
                 .append("remark", getRemark())
175
+                .append("icon", getIcon())
164 176
                 .toString();
165 177
     }
166 178
 }

+ 22 - 11
src/main/java/com/lqkj/type/entity/OrganizationType.java

@@ -46,6 +46,8 @@ public class OrganizationType extends BaseEntity
46 46
     @Excel(name = "颜色")
47 47
     private String colour;
48 48
 
49
+    private String icon;
50
+
49 51
     public void setTypeId(Integer typeId) 
50 52
     {
51 53
         this.typeId = typeId;
@@ -128,18 +130,27 @@ public class OrganizationType extends BaseEntity
128 130
         return colour;
129 131
     }
130 132
 
133
+    public String getIcon() {
134
+        return icon;
135
+    }
136
+
137
+    public void setIcon(String icon) {
138
+        this.icon = icon;
139
+    }
140
+
131 141
     @Override
132 142
     public String toString() {
133
-        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
134
-            .append("typeId", getTypeId())
135
-            .append("parentId", getParentId())
136
-            .append("typeName", getTypeName())
137
-            .append("click", getClick())
138
-            .append("search", getSearch())
139
-            .append("description", getDescription())
140
-            .append("orderId", getOrderId())
141
-            .append("memo", getMemo())
142
-            .append("colour", getColour())
143
-            .toString();
143
+        return "OrganizationType{" +
144
+                "typeId=" + typeId +
145
+                ", parentId=" + parentId +
146
+                ", typeName='" + typeName + '\'' +
147
+                ", click=" + click +
148
+                ", search=" + search +
149
+                ", description='" + description + '\'' +
150
+                ", orderId=" + orderId +
151
+                ", memo='" + memo + '\'' +
152
+                ", colour='" + colour + '\'' +
153
+                ", icon='" + icon + '\'' +
154
+                '}';
144 155
     }
145 156
 }

+ 1 - 1
src/main/resources/db/migration/V1_1__init.sql

@@ -293,7 +293,7 @@ SELECT setval('sys_dept_dept_id_seq', 200, true);
293 293
 -- ----------------------------
294 294
 -- 初始化-部门表数据
295 295
 -- ----------------------------
296
-insert into sys_dept values(100,  0,   '0',          '灵奇空间软件有限公司',   0, '', '', '', true,  'admin', now(), '', null),
296
+insert into sys_dept values(100,  0,   '0',          'xx公司',   0, '', '', '', true,  'admin', now(), '', null),
297 297
                            (101,  100, '0,100',      '研发部', 1, '', '', '', true,  'admin', now(), '', null),
298 298
                            (102,  100, '0,100',      '产品部', 2, '', '', '', true,  'admin', now(), '', null),
299 299
                            (103,  100, '0,100',      '项目部', 3, '', '', '', true,  'admin', now(), '', null),

+ 1 - 1
src/main/resources/db/migration/V1_2__20230202.sql

@@ -1,4 +1,4 @@
1
-update sys_config set config_value = '武侯区悦湖新材料产业功能区管理系统' where config_key = 'sys.index.title';
1
+update sys_config set config_value = '武侯区华西医美健康数字孪生管理系统' where config_key = 'sys.index.title';
2 2
 
3 3
 delete from cms_category;
4 4
 insert into cms_category values(1, 0, null, '新闻资讯', 0, null, 1, '超级管理员', now());

Файловите разлики са ограничени, защото са твърде много
+ 224 - 6
src/main/resources/db/migration/V1_5__20241111_menu.sql


+ 3 - 1
src/main/resources/db/migration/V1_6__20241126_icon.sql

@@ -42,7 +42,9 @@ comment on column room_type.icon is '图标';
42 42
 
43 43
 
44 44
 INSERT INTO "public"."traffic_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (2, 0, '公交', 't', 't', NULL, 0, NULL, '#0D4D69', NULL);
45
-INSERT INTO "public"."traffic_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (1, 0, '地铁', 't', 't', NULL, 1, NULL, '#1B8C2C', null);
45
+INSERT INTO "public"."traffic_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (1, 0, '地铁', 't', 't', NULL, 1, NULL, '#1B8C2C', NULL);
46
+INSERT INTO "public"."traffic_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (3, 0, '高铁', 't', 't', '高铁', 0, '高铁', NULL, NULL);
47
+
46 48
 SELECT setval('traffic_type_type_id_seq', (SELECT MAX(type_id) FROM traffic_type));
47 49
 
48 50
 

+ 74 - 0
src/main/resources/db/migration/V1_7__20241202.sql

@@ -0,0 +1,74 @@
1
+ALTER TABLE plan_info ADD COLUMN "cost" VARCHAR(255) NULL;
2
+comment on column plan_info."cost" is '成本';
3
+ALTER TABLE plan_info ADD COLUMN "earnings" VARCHAR(255) NULL;
4
+comment on column plan_info."earnings" is '收益';
5
+ALTER TABLE plan_info ADD COLUMN "total_pct" VARCHAR(255) NULL;
6
+comment on column plan_info."total_pct" is '总占比';
7
+ALTER TABLE plan_info ADD COLUMN "risk" VARCHAR(255) NULL;
8
+comment on column plan_info."risk" is '风险';
9
+
10
+
11
+ALTER TABLE policy_info ADD COLUMN "file_name" VARCHAR(255) NULL;
12
+comment on column policy_info."file_name" is '文件名';
13
+
14
+ALTER TABLE policy_info ADD COLUMN "type_id" INT4 NULL;
15
+comment on column policy_info."type_id" is '类型id';
16
+
17
+ALTER TABLE organization_info ADD COLUMN "industry_type" INT4 NULL;
18
+comment on column organization_info."industry_type" is '产业类型';
19
+
20
+ALTER TABLE organization_info ADD COLUMN "floor" INT4 NULL;
21
+comment on column organization_info."floor" is '楼层';
22
+
23
+ALTER TABLE elevator_info ADD COLUMN "type" INT4 NULL;
24
+comment on column elevator_info."type" is '类型';
25
+
26
+ALTER TABLE elevator_info ADD COLUMN "run_floors" VARCHAR(255) NULL;
27
+comment on column elevator_info."run_floors" is '运行楼层';
28
+
29
+ALTER TABLE elevator_info ADD COLUMN "run_time" VARCHAR(255) NULL;
30
+comment on column elevator_info."run_time" is '运行时间';
31
+
32
+ALTER TABLE equipment_info ADD COLUMN "device_status" int4 NULL;
33
+comment on column equipment_info."device_status" is '使用状态';
34
+
35
+ALTER TABLE equipment_info ADD COLUMN "equip_code" VARCHAR(255) NULL;
36
+comment on column equipment_info."equip_code" is '设备编号';
37
+
38
+ALTER TABLE equipment_info ADD COLUMN "brand" int4 NULL;
39
+comment on column equipment_info."brand" is '品牌';
40
+
41
+ALTER TABLE organization_info ADD COLUMN "house_type_id" int4 NULL;
42
+comment on column organization_info."house_type_id" is '户型id';
43
+
44
+ALTER TABLE building_info ALTER COLUMN memo TYPE VARCHAR(9999);
45
+
46
+
47
+INSERT INTO "public"."equipment_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (1, 0, '监控', 't', 't', NULL, 0, NULL, NULL, NULL);
48
+INSERT INTO "public"."equipment_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (2, 1, '电梯监控', 't', 't', NULL, 0, NULL, NULL, NULL);
49
+INSERT INTO "public"."equipment_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (3, 1, '停车场监控', 't', 't', NULL, 0, NULL, NULL, NULL);
50
+INSERT INTO "public"."equipment_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (4, 0, '充电桩', 't', 't', NULL, 0, NULL, NULL, NULL);
51
+INSERT INTO "public"."equipment_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (5, 1, '重点区域监控', 't', 't', NULL, 0, NULL, NULL, NULL);
52
+INSERT INTO "public"."equipment_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (6, 1, '重点设备监控', 't', 't', '重点设备监控', 0, '重点设备监控', NULL, NULL);
53
+INSERT INTO "public"."equipment_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (7, 1, '电力值班室监控', 't', 't', '电力值班室监控', 0, '电力值班室监控', NULL, NULL);
54
+
55
+select setval('equipment_type_type_id_seq', (select max(type_id) from equipment_type));
56
+
57
+
58
+INSERT INTO "public"."organization_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (1, 0, '人文休闲', 't', 't', '描述', 1, '备注', NULL, NULL);
59
+INSERT INTO "public"."organization_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (2, 0, '人文景观', 't', 't', '人文景观', 2, '人文景观', NULL, NULL);
60
+INSERT INTO "public"."organization_type" ("type_id", "parent_id", "type_name", "click", "search", "description", "order_id", "memo", "colour", "icon") VALUES (3, 0, '历史景点', 't', 't', '历史景点', 0, '历史景点', NULL, NULL);
61
+select setval('organization_type_type_id_seq', (select max(type_id) from organization_type));
62
+
63
+
64
+INSERT INTO "public"."organization_info" ("organization_id", "type_id", "room_id", "building_id", "area_id", "organization_name", "intro", "lng_lat", "raster_lng_lat", "important", "type_name", "address", "logo", "telephone", "product", "enter_time", "employe_num", "audio", "industry_type", "floor") VALUES (2, 1, NULL, NULL, NULL, '武侯祠', NULL, NULL, NULL, 't', NULL, NULL, '/profile/upload/2024/12/03/3800608a-92cb-4bd3-b63b-008f1eef5b3f.png', NULL, NULL, NULL, 0, NULL, NULL, NULL);
65
+INSERT INTO "public"."organization_info" ("organization_id", "type_id", "room_id", "building_id", "area_id", "organization_name", "intro", "lng_lat", "raster_lng_lat", "important", "type_name", "address", "logo", "telephone", "product", "enter_time", "employe_num", "audio", "industry_type", "floor") VALUES (3, 1, NULL, NULL, NULL, '成都锦里', NULL, NULL, NULL, 't', NULL, NULL, '/profile/upload/2024/12/03/53f33589-b044-448b-85b2-9792c25b412b.png', NULL, NULL, NULL, 0, NULL, NULL, NULL);
66
+INSERT INTO "public"."organization_info" ("organization_id", "type_id", "room_id", "building_id", "area_id", "organization_name", "intro", "lng_lat", "raster_lng_lat", "important", "type_name", "address", "logo", "telephone", "product", "enter_time", "employe_num", "audio", "industry_type", "floor") VALUES (4, 1, NULL, NULL, NULL, '三义祠', NULL, NULL, NULL, 't', NULL, NULL, '/profile/upload/2024/12/03/e79a0489-fb32-411b-a7bc-4a5d3eb9d587.png', NULL, NULL, NULL, 0, NULL, NULL, NULL);
67
+INSERT INTO "public"."organization_info" ("organization_id", "type_id", "room_id", "building_id", "area_id", "organization_name", "intro", "lng_lat", "raster_lng_lat", "important", "type_name", "address", "logo", "telephone", "product", "enter_time", "employe_num", "audio", "industry_type", "floor") VALUES (5, 1, NULL, NULL, NULL, '天府广场', NULL, NULL, NULL, 't', NULL, NULL, '/profile/upload/2024/12/03/888c70ea-db04-4bd1-812b-8cfc137e647f.png', NULL, NULL, NULL, 0, NULL, NULL, NULL);
68
+INSERT INTO "public"."organization_info" ("organization_id", "type_id", "room_id", "building_id", "area_id", "organization_name", "intro", "lng_lat", "raster_lng_lat", "important", "type_name", "address", "logo", "telephone", "product", "enter_time", "employe_num", "audio", "industry_type", "floor") VALUES (6, 3, NULL, NULL, NULL, '武侯祠', NULL, NULL, NULL, 't', NULL, NULL, '/profile/upload/2024/12/03/fa5663a9-c217-40e1-8ed8-5c117d8dad73.png', NULL, NULL, NULL, 0, NULL, NULL, NULL);
69
+INSERT INTO "public"."organization_info" ("organization_id", "type_id", "room_id", "building_id", "area_id", "organization_name", "intro", "lng_lat", "raster_lng_lat", "important", "type_name", "address", "logo", "telephone", "product", "enter_time", "employe_num", "audio", "industry_type", "floor") VALUES (7, 3, NULL, NULL, NULL, '成都锦里', NULL, NULL, NULL, 't', NULL, NULL, '/profile/upload/2024/12/03/763ea03f-74c4-480c-ab93-9ff94ee1e495.png', NULL, NULL, NULL, 0, NULL, NULL, NULL);
70
+INSERT INTO "public"."organization_info" ("organization_id", "type_id", "room_id", "building_id", "area_id", "organization_name", "intro", "lng_lat", "raster_lng_lat", "important", "type_name", "address", "logo", "telephone", "product", "enter_time", "employe_num", "audio", "industry_type", "floor") VALUES (8, 3, NULL, NULL, NULL, '三义祠', NULL, NULL, NULL, 't', NULL, NULL, '/profile/upload/2024/12/03/2fc1e106-99c6-4494-88fc-30bb20e54f60.png', NULL, NULL, NULL, 0, NULL, NULL, NULL);
71
+INSERT INTO "public"."organization_info" ("organization_id", "type_id", "room_id", "building_id", "area_id", "organization_name", "intro", "lng_lat", "raster_lng_lat", "important", "type_name", "address", "logo", "telephone", "product", "enter_time", "employe_num", "audio", "industry_type", "floor") VALUES (9, 3, NULL, NULL, NULL, '天府广场', NULL, NULL, NULL, 't', NULL, NULL, '/profile/upload/2024/12/03/7e596486-b5c4-4c85-890a-6aa6f12840f8.png', NULL, NULL, NULL, 0, NULL, NULL, NULL);
72
+select setval('organization_info_organization_id_seq', (select max(organization_id) from organization_info));
73
+
74
+

+ 16 - 1
src/main/resources/mapper/info/ElevatorInfoMapper.xml

@@ -11,10 +11,13 @@
11 11
 		<result property="status"    column="status"    />
12 12
 		<result property="elevatorName"    column="elevator_name"    />
13 13
 		<result property="upkeepNum"    column="upkeep_num"    />
14
+		<result property="type" column="type"/>
15
+		<result property="runFloor"    column="run_floors"    />
16
+		<result property="runTime"    column="run_time"    />
14 17
 	</resultMap>
15 18
 
16 19
 	<sql id="selectElevatorInfoVo">
17
-		select elevator_id, elevator_code, building_id, status, elevator_name, upkeep_num from elevator_info
20
+		select elevator_id, elevator_code, building_id, status, elevator_name, upkeep_num, type, run_floors, run_time from elevator_info
18 21
 	</sql>
19 22
 
20 23
 	<select id="selectElevatorInfoList" parameterType="ElevatorInfo" resultMap="ElevatorInfoResult">
@@ -24,6 +27,9 @@
24 27
 			<if test="buildingId != null "> and building_id = #{buildingId}</if>
25 28
 			<if test="status != null "> and status = #{status}</if>
26 29
 			<if test="elevatorName != null  and elevatorName != ''"> and elevator_name like concat('%', #{elevatorName}, '%')</if>
30
+			<if test="type != null "> and type = #{type}</if>
31
+			<if test="runFloor != null and runFloor != ''"> and run_floors like concat('%', #{runFloor}, '%')</if>
32
+			<if test="runTime != null and runTime != ''"> and run_time like concat('%', #{runTime}, '%')</if>
27 33
 		</where>
28 34
 		order by elevator_id
29 35
 
@@ -42,6 +48,9 @@
42 48
 			<if test="status != null">status,</if>
43 49
 			<if test="elevatorName != null and elevatorName != ''">elevator_name,</if>
44 50
 			<if test="upkeepNum != null">upkeep_num,</if>
51
+		    <if test="type != null">type,</if>
52
+		    <if test="runFloor != null and runFloor != ''">run_floors,</if>
53
+		    <if test="runTime != null and runTime != ''">run_time,</if>
45 54
 		</trim>
46 55
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
47 56
 			<if test="elevatorCode != null and elevatorCode != ''">#{elevatorCode},</if>
@@ -49,6 +58,9 @@
49 58
 			<if test="status != null">#{status},</if>
50 59
 			<if test="elevatorName != null and elevatorName != ''">#{elevatorName},</if>
51 60
 			<if test="upkeepNum != null">#{upkeepNum},</if>
61
+		    <if test="type != null">#{type},</if>
62
+		    <if test="runFloor != null and runFloor != ''">#{runFloor},</if>
63
+		    <if test="runTime != null and runTime != ''">#{runTime},</if>
52 64
 		</trim>
53 65
 	</insert>
54 66
 
@@ -60,6 +72,9 @@
60 72
 			status = #{status},
61 73
 			elevator_name = #{elevatorName},
62 74
 			upkeep_num = #{upkeepNum},
75
+		    type = #{type},
76
+			run_floors = #{runFloor},
77
+		    run_time = #{runTime},
63 78
 		</trim>
64 79
 		where elevator_id = #{elevatorId}
65 80
 	</update>

+ 18 - 4
src/main/resources/mapper/info/EquipmentInfoMapper.xml

@@ -15,19 +15,24 @@
15 15
 		<result property="rasterLngLat"    column="raster_lng_lat"    />
16 16
 		<result property="typeName"    column="type_name"    />
17 17
 		<result property="status"    column="status"    />
18
+		<result property="equipCode"    column="equip_code"    />
19
+		<result property="deviceStatus"    column="device_status"    />
20
+		<result property="brand" column="brand"/>
18 21
 	</resultMap>
19 22
 
20 23
 	<sql id="selectEquipmentInfoVo">
21
-		select equipment_id, type_id, room_id, building_id, area_id, equipment_name, lng_lat, raster_lng_lat, type_name, status from equipment_info
24
+		select equipment_id, type_id, room_id, building_id, area_id, equipment_name, lng_lat, raster_lng_lat, type_name, status, equip_code, device_status, brand from equipment_info
22 25
 	</sql>
23 26
 
24 27
 	<select id="selectEquipmentInfoList" parameterType="EquipmentInfo" resultMap="EquipmentInfoResult">
25 28
 		<include refid="selectEquipmentInfoVo"/>
26 29
 		<where>
27 30
 			<if test="equipmentName != null  and equipmentName != ''"> and equipment_name like concat('%', #{equipmentName}, '%')</if>
28
-			<if test="lngLat != null  and lngLat != ''"> and lng_lat like concat('%', #{lngLat}, '%')</if>
29
-			<if test="rasterLngLat != null  and rasterLngLat != ''"> and raster_lng_lat like concat('%', #{rasterLngLat}, '%')</if>
30
-			<if test="typeName != null  and typeName != ''"> and type_name = #{typeName}</if>
31
+			<if test="typeId != null"> and type_id = #{typeId}</if>
32
+			<if test="buildingId != null"> and building_id = #{buildingId}</if>
33
+			<if test="areaId != null"> and area_id = #{areaId}</if>
34
+			<if test="roomId != null"> and room_id = #{roomId}</if>
35
+			<if test="status != null"> and status = #{status}</if>
31 36
 		</where>
32 37
 		order by equipment_id
33 38
 
@@ -50,6 +55,9 @@
50 55
 			<if test="rasterLngLat != null and rasterLngLat != ''">raster_lng_lat,</if>
51 56
 			<if test="typeName != null and typeName != ''">type_name,</if>
52 57
 			<if test="status != null">status,</if>
58
+		    <if test="equipCode != null and equipCode != ''">equip_code,</if>
59
+		    <if test="deviceStatus != null">device_status,</if>
60
+		    <if test="brand != null">brand,</if>
53 61
 		</trim>
54 62
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
55 63
 			<if test="typeId != null">#{typeId},</if>
@@ -61,6 +69,9 @@
61 69
 			<if test="rasterLngLat != null and rasterLngLat != ''">#{rasterLngLat},</if>
62 70
 			<if test="typeName != null and typeName != ''">#{typeName},</if>
63 71
 			<if test="status != null">#{status},</if>
72
+		    <if test="equipCode != null and equipCode != ''">#{equipCode},</if>
73
+		    <if test="deviceStatus != null">#{deviceStatus},</if>
74
+		    <if test="brand != null">#{brand},</if>
64 75
 		</trim>
65 76
 	</insert>
66 77
 
@@ -76,6 +87,9 @@
76 87
 			raster_lng_lat = #{rasterLngLat},
77 88
 			type_name = #{typeName},
78 89
 			status = #{status},
90
+		    equip_code = #{equipCode},
91
+		    device_status = #{deviceStatus},
92
+		    brand = #{brand},
79 93
 		</trim>
80 94
 		where equipment_id = #{equipmentId}
81 95
 	</update>

+ 16 - 1
src/main/resources/mapper/info/OrganizationInfoMapper.xml

@@ -23,10 +23,13 @@
23 23
 		<result property="enterTime"    column="enter_time"    />
24 24
 		<result property="employeNum"    column="employe_num"    />
25 25
 		<result property="audio"    column="audio"    />
26
+		<result property="industryType" column="industry_type"/>
27
+		<result property="floor" column="floor"/>
28
+		<result property="houseTypeId" column="house_type_id"/>
26 29
 	</resultMap>
27 30
 
28 31
 	<sql id="selectOrganizationInfoVo">
29
-		select organization_id, type_id, room_id, building_id, area_id, organization_name, intro, lng_lat, raster_lng_lat, important, type_name, address, logo, telephone, product, enter_time, employe_num, audio from organization_info
32
+		select organization_id, type_id, room_id, building_id, area_id, organization_name, intro, lng_lat, raster_lng_lat, important, type_name, address, logo, telephone, product, enter_time, employe_num, audio, industry_type, floor, house_type_id from organization_info
30 33
 	</sql>
31 34
 
32 35
 	<select id="selectOrganizationInfoList" parameterType="OrganizationInfo" resultMap="OrganizationInfoResult">
@@ -38,6 +41,9 @@
38 41
 			<if test="areaId != null "> and area_id = #{areaId}</if>
39 42
 			<if test="organizationName != null  and organizationName != ''"> and organization_name like concat('%', #{organizationName}, '%')</if>
40 43
 			<if test="important != null "> and important = #{important}</if>
44
+			<if test="industryType != null "> and industry_type = #{industryType}</if>
45
+			<if test="floor != null "> and floor = #{floor}</if>
46
+			<if test="houseTypeId != null "> and house_type_id = #{houseTypeId}</if>
41 47
 		</where>
42 48
 		order by organization_id
43 49
 
@@ -68,6 +74,9 @@
68 74
 			<if test="enterTime != null">enter_time,</if>
69 75
 			<if test="employeNum != null">employe_num,</if>
70 76
 		    <if test="audio != null and audio != ''">logo,</if>
77
+		    <if test="industryType != null">industry_type,</if>
78
+		    <if test="floor != null">floor,</if>
79
+		    <if test="houseTypeId != null">house_type_id,</if>
71 80
 		</trim>
72 81
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
73 82
 			<if test="typeId != null">#{typeId},</if>
@@ -87,6 +96,9 @@
87 96
 			<if test="enterTime != null">#{enterTime},</if>
88 97
 			<if test="employeNum != null">#{employeNum},</if>
89 98
 		    <if test="audio != null and audio != ''">#{logo},</if>
99
+		    <if test="industryType != null">#{industryType},</if>
100
+		    <if test="floor != null">#{floor},</if>
101
+		    <if test="houseTypeId != null">#{houseTypeId},</if>
90 102
 		</trim>
91 103
 	</insert>
92 104
 
@@ -110,6 +122,9 @@
110 122
 			enter_time = #{enterTime},
111 123
 			employe_num = #{employeNum},
112 124
 		    audio = #{audio},
125
+		    industry_type = #{industryType},
126
+		    floor = #{floor},
127
+		    house_type_id = #{houseTypeId}
113 128
 		</trim>
114 129
 		where organization_id = #{organizationId}
115 130
 	</update>

+ 17 - 1
src/main/resources/mapper/info/PlanInfoMapper.xml

@@ -12,10 +12,14 @@
12 12
 		<result property="content"    column="content"    />
13 13
 		<result property="colour"    column="colour"    />
14 14
 		<result property="acreage"    column="acreage"    />
15
+		<result property="cost" column="cost"/>
16
+		<result property="totalPct" column="total_pct"/>
17
+		<result property="risk" column="risk"/>
18
+		<result property="earnings" column="earnings"/>
15 19
 	</resultMap>
16 20
 
17 21
 	<sql id="selectPlanInfoVo">
18
-		select plan_id, area_id, type_id, plan_name, content, colour, acreage from plan_info
22
+		select plan_id, area_id, type_id, plan_name, content, colour, acreage, cost, total_pct, risk, earnings from plan_info
19 23
 	</sql>
20 24
 
21 25
 	<select id="selectPlanInfoList" parameterType="PlanInfo" resultMap="PlanInfoResult">
@@ -43,6 +47,10 @@
43 47
 			<if test="content != null and content != ''">content,</if>
44 48
 			<if test="colour != null and colour != ''">colour,</if>
45 49
 			<if test="acreage != null">acreage,</if>
50
+		    <if test="cost != null and cost != ''">cost,</if>
51
+		    <if test="totalPct != null and totalPct != ''">total_pct,</if>
52
+		    <if test="risk != null and risk != ''">risk,</if>
53
+		    <if test="earnings != null and earnings != ''">earnings,</if>
46 54
 		</trim>
47 55
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
48 56
 			<if test="areaId != null">#{areaId},</if>
@@ -51,6 +59,10 @@
51 59
 			<if test="content != null and content != ''">#{content},</if>
52 60
 			<if test="colour != null and colour != ''">#{colour},</if>
53 61
 			<if test="acreage != null">#{acreage},</if>
62
+		    <if test="cost != null and cost != ''">#{cost},</if>
63
+		    <if test="totalPct != null and totalPct != ''">#{totalPct},</if>
64
+		    <if test="risk != null and risk != ''">#{risk},</if>
65
+		    <if test="earnings != null and earnings != ''">#{earnings},</if>
54 66
 		</trim>
55 67
 	</insert>
56 68
 
@@ -63,6 +75,10 @@
63 75
 			content = #{content},
64 76
 			colour = #{colour},
65 77
 			acreage = #{acreage},
78
+		    cost = #{cost},
79
+		    total_pct = #{totalPct},
80
+		    risk = #{risk},
81
+		    earnings = #{earnings},
66 82
 		</trim>
67 83
 		where plan_id = #{planId}
68 84
 	</update>

+ 14 - 2
src/main/resources/mapper/info/PolicyInfoMapper.xml

@@ -10,10 +10,11 @@
10 10
 		<result property="url"    column="url"    />
11 11
 		<result property="createTime"    column="create_time"    />
12 12
 		<result property="fileName"    column="file_name"    />
13
+		<result property="typeId"    column="type_id"    />
13 14
 	</resultMap>
14 15
 
15 16
 	<sql id="selectPolicyInfoVo">
16
-		select policy_id, policy_name, url, create_time, file_name from policy_info
17
+		select policy_id, policy_name, url, create_time, file_name, type_id from policy_info
17 18
 	</sql>
18 19
 
19 20
 	<select id="selectPolicyInfoList" parameterType="PolicyInfo" resultMap="PolicyInfoResult">
@@ -22,8 +23,16 @@
22 23
 			<if test="policyName != null  and policyName != ''"> and policy_name like concat('%', #{policyName}, '%')</if>
23 24
 			<if test="createTime != null "> and create_time = #{createTime}</if>
24 25
 			<if test="fileName != null  and fileName != ''"> and file_name like concat('%', #{fileName}, '%')</if>
26
+			<if test="typeId != null "> and type_id = #{typeId}</if>
25 27
 		</where>
26
-		order by policy_id
28
+		<choose>
29
+			<when test="orderBy != null and orderBy != ''">
30
+				order by create_time desc
31
+			</when>
32
+			<otherwise>
33
+				order by create_time
34
+			</otherwise>
35
+		</choose>
27 36
 
28 37
 	</select>
29 38
 
@@ -39,12 +48,14 @@
39 48
 			<if test="url != null and url != ''">url,</if>
40 49
 			<if test="createTime != null">create_time,</if>
41 50
 			<if test="fileName != null and fileName != ''">file_name,</if>
51
+		    <if test="typeId != null">type_id,</if>
42 52
 		</trim>
43 53
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
44 54
 			<if test="policyName != null and policyName != ''">#{policyName},</if>
45 55
 			<if test="url != null and url != ''">#{url},</if>
46 56
 			now(),
47 57
 			<if test="fileName != null and fileName != ''">#{fileName},</if>
58
+		    <if test="typeId != null">#{typeId},</if>
48 59
 		</trim>
49 60
 	</insert>
50 61
 
@@ -54,6 +65,7 @@
54 65
 			policy_name = #{policyName},
55 66
 			url = #{url},
56 67
 			file_name = #{fileName},
68
+		    type_id = #{typeId},
57 69
 		</trim>
58 70
 		where policy_id = #{policyId}
59 71
 	</update>

+ 5 - 1
src/main/resources/mapper/system/SysDictDataMapper.xml

@@ -18,10 +18,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
18 18
 		<result property="createTime" column="create_time" />
19 19
 		<result property="updateBy"   column="update_by"   />
20 20
 		<result property="updateTime" column="update_time" />
21
+		<result property="icon"		  column="icon"        />
21 22
 	</resultMap>
22 23
 	
23 24
 	<sql id="selectDictDataVo">
24
-        select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark 
25
+        select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark, icon
25 26
 		from sys_dict_data
26 27
     </sql>
27 28
 
@@ -84,6 +85,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
84 85
  			<if test="status != null">status = #{status},</if>
85 86
  			<if test="remark != null">remark = #{remark},</if>
86 87
  			<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
88
+ 		    <if test="icon != null and icon != ''">icon = #{icon},</if>
87 89
  			update_time = now()
88 90
  		</set>
89 91
  		where dict_code = #{dictCode}
@@ -105,6 +107,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
105 107
  			<if test="status != null">status,</if>
106 108
  			<if test="remark != null and remark != ''">remark,</if>
107 109
  			<if test="createBy != null and createBy != ''">create_by,</if>
110
+ 		    <if test="icon != null and icon != ''">icon,</if>
108 111
  			create_time
109 112
  		)values(
110 113
  		    <if test="dictSort != null">#{dictSort},</if>
@@ -117,6 +120,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
117 120
  			<if test="status != null">#{status},</if>
118 121
  			<if test="remark != null and remark != ''">#{remark},</if>
119 122
  			<if test="createBy != null and createBy != ''">#{createBy},</if>
123
+ 		    <if test="icon != null and icon != ''">#{icon},</if>
120 124
 		now()
121 125
  		)
122 126
 	</insert>

+ 5 - 1
src/main/resources/mapper/type/OrganizationTypeMapper.xml

@@ -14,10 +14,11 @@
14 14
 		<result property="orderId"    column="order_id"    />
15 15
 		<result property="memo"    column="memo"    />
16 16
 		<result property="colour"    column="colour"    />
17
+		<result property="icon"    column="icon"    />
17 18
 	</resultMap>
18 19
 
19 20
 	<sql id="selectOrganizationTypeVo">
20
-		select type_id, parent_id, type_name, click, search, description, order_id, memo, colour from organization_type
21
+		select type_id, parent_id, type_name, click, search, description, order_id, memo, colour, icon from organization_type
21 22
 	</sql>
22 23
 
23 24
 	<select id="selectOrganizationTypeList" parameterType="OrganizationType" resultMap="OrganizationTypeResult">
@@ -45,6 +46,7 @@
45 46
 			<if test="orderId != null">order_id,</if>
46 47
 			<if test="memo != null and memo != ''">memo,</if>
47 48
 			<if test="colour != null and colour != ''">colour,</if>
49
+		    <if test="icon != null and icon != ''">icon,</if>
48 50
 		</trim>
49 51
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
50 52
 			<if test="parentId != null">#{parentId},</if>
@@ -55,6 +57,7 @@
55 57
 			<if test="orderId != null">#{orderId},</if>
56 58
 			<if test="memo != null and memo != ''">#{memo},</if>
57 59
 			<if test="colour != null and colour != ''">#{colour},</if>
60
+		    <if test="icon != null and icon != ''">#{icon},</if>
58 61
 		</trim>
59 62
 	</insert>
60 63
 
@@ -69,6 +72,7 @@
69 72
 			order_id = #{orderId},
70 73
 			memo = #{memo},
71 74
 			colour = #{colour},
75
+		    icon = #{icon},
72 76
 		</trim>
73 77
 		where type_id = #{typeId}
74 78
 	</update>