Browse Source

功能调整,增加

liaoyitao 3 months ago
parent
commit
dfdd12c398
29 changed files with 926 additions and 104 deletions
  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
     private CameraInfoService cameraInfoService;
33
     private CameraInfoService cameraInfoService;
34
     @Override
34
     @Override
35
     public void run(String... args) throws Exception {
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
     @Excel(name = "保养次数")
39
     @Excel(name = "保养次数")
40
     private Integer upkeepNum;
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
     public void setElevatorId(Integer elevatorId) 
51
     public void setElevatorId(Integer elevatorId) 
43
     {
52
     {
44
         this.elevatorId = elevatorId;
53
         this.elevatorId = elevatorId;
@@ -94,15 +103,42 @@ public class ElevatorInfo extends BaseEntity
94
         return upkeepNum;
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
     @Override
130
     @Override
98
     public String toString() {
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
     @Excel(name = "状态")
53
     @Excel(name = "状态")
54
     private Integer status;
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
     public void setEquipmentId(Integer equipmentId) 
65
     public void setEquipmentId(Integer equipmentId) 
57
     {
66
     {
58
         this.equipmentId = equipmentId;
67
         this.equipmentId = equipmentId;
@@ -144,19 +153,46 @@ public class EquipmentInfo extends BaseEntity
144
         return status;
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
     @Override
180
     @Override
148
     public String toString() {
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
     @Excel(name = "区域id")
36
     @Excel(name = "区域id")
37
     private Integer areaId;
37
     private Integer areaId;
38
 
38
 
39
+    /** 产业类型 */
40
+    private Integer industryType;
41
+
42
+    /** 户型 */
43
+    private Integer houseTypeId;
44
+
39
     /** 名称 */
45
     /** 名称 */
40
     @Excel(name = "名称")
46
     @Excel(name = "名称")
41
     private String organizationName;
47
     private String organizationName;
@@ -79,6 +85,9 @@ public class OrganizationInfo extends BaseEntity
79
     /** 宣传视频 */
85
     /** 宣传视频 */
80
     private String audio;
86
     private String audio;
81
 
87
 
88
+    /** 楼层 */
89
+    private Integer floor;
90
+
82
     public String getAudio() {
91
     public String getAudio() {
83
         return audio;
92
         return audio;
84
     }
93
     }
@@ -241,6 +250,30 @@ public class OrganizationInfo extends BaseEntity
241
         return employeNum;
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
     @Override
277
     @Override
245
     public String toString() {
278
     public String toString() {
246
         return "OrganizationInfo{" +
279
         return "OrganizationInfo{" +
@@ -249,6 +282,8 @@ public class OrganizationInfo extends BaseEntity
249
                 ", roomId=" + roomId +
282
                 ", roomId=" + roomId +
250
                 ", buildingId=" + buildingId +
283
                 ", buildingId=" + buildingId +
251
                 ", areaId=" + areaId +
284
                 ", areaId=" + areaId +
285
+                ", industryType=" + industryType +
286
+                ", houseTypeId=" + houseTypeId +
252
                 ", organizationName='" + organizationName + '\'' +
287
                 ", organizationName='" + organizationName + '\'' +
253
                 ", intro='" + intro + '\'' +
288
                 ", intro='" + intro + '\'' +
254
                 ", lngLat='" + lngLat + '\'' +
289
                 ", lngLat='" + lngLat + '\'' +
@@ -262,6 +297,7 @@ public class OrganizationInfo extends BaseEntity
262
                 ", enterTime=" + enterTime +
297
                 ", enterTime=" + enterTime +
263
                 ", employeNum=" + employeNum +
298
                 ", employeNum=" + employeNum +
264
                 ", audio='" + audio + '\'' +
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
     @Excel(name = "面积")
42
     @Excel(name = "面积")
43
     private Integer acreage;
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
     public void setPlanId(Integer planId) 
57
     public void setPlanId(Integer planId) 
46
     {
58
     {
47
         this.planId = planId;
59
         this.planId = planId;
@@ -106,16 +118,52 @@ public class PlanInfo extends BaseEntity
106
         return acreage;
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
     @Override
153
     @Override
110
     public String toString() {
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
 package com.lqkj.info.entity;
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
 import com.lqkj.common.annotation.Excel;
4
 import com.lqkj.common.annotation.Excel;
6
 import com.lqkj.common.core.model.BaseEntity;
5
 import com.lqkj.common.core.model.BaseEntity;
6
+import org.springframework.data.annotation.Transient;
7
+
8
+
7
 
9
 
8
 /**
10
 /**
9
  * 政策信息对象 policy_info
11
  * 政策信息对象 policy_info
@@ -18,6 +20,9 @@ public class PolicyInfo extends BaseEntity
18
     /** 政策id */
20
     /** 政策id */
19
     private Integer policyId;
21
     private Integer policyId;
20
 
22
 
23
+    /** 类型id */
24
+    private Integer typeId;
25
+
21
     /** 政策名称 */
26
     /** 政策名称 */
22
     @Excel(name = "政策名称")
27
     @Excel(name = "政策名称")
23
     private String policyName;
28
     private String policyName;
@@ -29,6 +34,11 @@ public class PolicyInfo extends BaseEntity
29
     @Excel(name = "文件名")
34
     @Excel(name = "文件名")
30
     private String fileName;
35
     private String fileName;
31
 
36
 
37
+
38
+    @Transient
39
+    private String orderBy;
40
+
41
+
32
     public void setPolicyId(Integer policyId) 
42
     public void setPolicyId(Integer policyId) 
33
     {
43
     {
34
         this.policyId = policyId;
44
         this.policyId = policyId;
@@ -66,14 +76,31 @@ public class PolicyInfo extends BaseEntity
66
         return fileName;
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
     @Override
95
     @Override
70
     public String toString() {
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
 import org.springframework.web.bind.annotation.RestController;
11
 import org.springframework.web.bind.annotation.RestController;
12
 
12
 
13
 
13
 
14
+/**
15
+ * 城市推荐-经济发展
16
+ */
14
 @Api(tags = {"城市推荐-经济发展"})
17
 @Api(tags = {"城市推荐-经济发展"})
15
 @RestController
18
 @RestController
16
 @RequestMapping("/ioc/cityRecommendation/economicDevelopment")
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
 import org.springframework.web.bind.annotation.RequestMapping;
10
 import org.springframework.web.bind.annotation.RequestMapping;
11
 import org.springframework.web.bind.annotation.RestController;
11
 import org.springframework.web.bind.annotation.RestController;
12
 
12
 
13
+/**
14
+ * 配套资源
15
+ */
13
 @Api(tags = {"配套资源"})
16
 @Api(tags = {"配套资源"})
14
 @RestController
17
 @RestController
15
 @RequestMapping("/ioc/SupportResources")
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
 import org.springframework.web.bind.annotation.RequestMapping;
10
 import org.springframework.web.bind.annotation.RequestMapping;
11
 import org.springframework.web.bind.annotation.RestController;
11
 import org.springframework.web.bind.annotation.RestController;
12
 
12
 
13
+/**
14
+ * 交通系统
15
+ */
13
 @Api(tags = {"交通系统"})
16
 @Api(tags = {"交通系统"})
14
 @RestController
17
 @RestController
15
 @RequestMapping("/ioc/trafficSystem")
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
     @Excel(name = "状态", readConverterExp = "true=正常,false=停用")
52
     @Excel(name = "状态", readConverterExp = "true=正常,false=停用")
53
     private Boolean status;
53
     private Boolean status;
54
 
54
 
55
+    /** 菜单图标 */
56
+    private String icon;
57
+
55
     public Integer getDictCode()
58
     public Integer getDictCode()
56
     {
59
     {
57
         return dictCode;
60
         return dictCode;
@@ -144,6 +147,14 @@ public class SysDictData extends BaseEntity
144
         this.status = status;
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
     @Override
158
     @Override
148
     public String toString() {
159
     public String toString() {
149
         return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
160
         return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
@@ -161,6 +172,7 @@ public class SysDictData extends BaseEntity
161
                 .append("updateBy", getUpdateBy())
172
                 .append("updateBy", getUpdateBy())
162
                 .append("updateTime", getUpdateTime())
173
                 .append("updateTime", getUpdateTime())
163
                 .append("remark", getRemark())
174
                 .append("remark", getRemark())
175
+                .append("icon", getIcon())
164
                 .toString();
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
     @Excel(name = "颜色")
46
     @Excel(name = "颜色")
47
     private String colour;
47
     private String colour;
48
 
48
 
49
+    private String icon;
50
+
49
     public void setTypeId(Integer typeId) 
51
     public void setTypeId(Integer typeId) 
50
     {
52
     {
51
         this.typeId = typeId;
53
         this.typeId = typeId;
@@ -128,18 +130,27 @@ public class OrganizationType extends BaseEntity
128
         return colour;
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
     @Override
141
     @Override
132
     public String toString() {
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
                            (101,  100, '0,100',      '研发部', 1, '', '', '', true,  'admin', now(), '', null),
297
                            (101,  100, '0,100',      '研发部', 1, '', '', '', true,  'admin', now(), '', null),
298
                            (102,  100, '0,100',      '产品部', 2, '', '', '', true,  'admin', now(), '', null),
298
                            (102,  100, '0,100',      '产品部', 2, '', '', '', true,  'admin', now(), '', null),
299
                            (103,  100, '0,100',      '项目部', 3, '', '', '', true,  'admin', now(), '', null),
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
 delete from cms_category;
3
 delete from cms_category;
4
 insert into cms_category values(1, 0, null, '新闻资讯', 0, null, 1, '超级管理员', now());
4
 insert into cms_category values(1, 0, null, '新闻资讯', 0, null, 1, '超级管理员', now());

File diff suppressed because it is too large
+ 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
 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);
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
 SELECT setval('traffic_type_type_id_seq', (SELECT MAX(type_id) FROM traffic_type));
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
 		<result property="status"    column="status"    />
11
 		<result property="status"    column="status"    />
12
 		<result property="elevatorName"    column="elevator_name"    />
12
 		<result property="elevatorName"    column="elevator_name"    />
13
 		<result property="upkeepNum"    column="upkeep_num"    />
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
 	</resultMap>
17
 	</resultMap>
15
 
18
 
16
 	<sql id="selectElevatorInfoVo">
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
 	</sql>
21
 	</sql>
19
 
22
 
20
 	<select id="selectElevatorInfoList" parameterType="ElevatorInfo" resultMap="ElevatorInfoResult">
23
 	<select id="selectElevatorInfoList" parameterType="ElevatorInfo" resultMap="ElevatorInfoResult">
@@ -24,6 +27,9 @@
24
 			<if test="buildingId != null "> and building_id = #{buildingId}</if>
27
 			<if test="buildingId != null "> and building_id = #{buildingId}</if>
25
 			<if test="status != null "> and status = #{status}</if>
28
 			<if test="status != null "> and status = #{status}</if>
26
 			<if test="elevatorName != null  and elevatorName != ''"> and elevator_name like concat('%', #{elevatorName}, '%')</if>
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
 		</where>
33
 		</where>
28
 		order by elevator_id
34
 		order by elevator_id
29
 
35
 
@@ -42,6 +48,9 @@
42
 			<if test="status != null">status,</if>
48
 			<if test="status != null">status,</if>
43
 			<if test="elevatorName != null and elevatorName != ''">elevator_name,</if>
49
 			<if test="elevatorName != null and elevatorName != ''">elevator_name,</if>
44
 			<if test="upkeepNum != null">upkeep_num,</if>
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
 		</trim>
54
 		</trim>
46
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
55
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
47
 			<if test="elevatorCode != null and elevatorCode != ''">#{elevatorCode},</if>
56
 			<if test="elevatorCode != null and elevatorCode != ''">#{elevatorCode},</if>
@@ -49,6 +58,9 @@
49
 			<if test="status != null">#{status},</if>
58
 			<if test="status != null">#{status},</if>
50
 			<if test="elevatorName != null and elevatorName != ''">#{elevatorName},</if>
59
 			<if test="elevatorName != null and elevatorName != ''">#{elevatorName},</if>
51
 			<if test="upkeepNum != null">#{upkeepNum},</if>
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
 		</trim>
64
 		</trim>
53
 	</insert>
65
 	</insert>
54
 
66
 
@@ -60,6 +72,9 @@
60
 			status = #{status},
72
 			status = #{status},
61
 			elevator_name = #{elevatorName},
73
 			elevator_name = #{elevatorName},
62
 			upkeep_num = #{upkeepNum},
74
 			upkeep_num = #{upkeepNum},
75
+		    type = #{type},
76
+			run_floors = #{runFloor},
77
+		    run_time = #{runTime},
63
 		</trim>
78
 		</trim>
64
 		where elevator_id = #{elevatorId}
79
 		where elevator_id = #{elevatorId}
65
 	</update>
80
 	</update>

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

@@ -15,19 +15,24 @@
15
 		<result property="rasterLngLat"    column="raster_lng_lat"    />
15
 		<result property="rasterLngLat"    column="raster_lng_lat"    />
16
 		<result property="typeName"    column="type_name"    />
16
 		<result property="typeName"    column="type_name"    />
17
 		<result property="status"    column="status"    />
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
 	</resultMap>
21
 	</resultMap>
19
 
22
 
20
 	<sql id="selectEquipmentInfoVo">
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
 	</sql>
25
 	</sql>
23
 
26
 
24
 	<select id="selectEquipmentInfoList" parameterType="EquipmentInfo" resultMap="EquipmentInfoResult">
27
 	<select id="selectEquipmentInfoList" parameterType="EquipmentInfo" resultMap="EquipmentInfoResult">
25
 		<include refid="selectEquipmentInfoVo"/>
28
 		<include refid="selectEquipmentInfoVo"/>
26
 		<where>
29
 		<where>
27
 			<if test="equipmentName != null  and equipmentName != ''"> and equipment_name like concat('%', #{equipmentName}, '%')</if>
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
 		</where>
36
 		</where>
32
 		order by equipment_id
37
 		order by equipment_id
33
 
38
 
@@ -50,6 +55,9 @@
50
 			<if test="rasterLngLat != null and rasterLngLat != ''">raster_lng_lat,</if>
55
 			<if test="rasterLngLat != null and rasterLngLat != ''">raster_lng_lat,</if>
51
 			<if test="typeName != null and typeName != ''">type_name,</if>
56
 			<if test="typeName != null and typeName != ''">type_name,</if>
52
 			<if test="status != null">status,</if>
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
 		</trim>
61
 		</trim>
54
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
62
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
55
 			<if test="typeId != null">#{typeId},</if>
63
 			<if test="typeId != null">#{typeId},</if>
@@ -61,6 +69,9 @@
61
 			<if test="rasterLngLat != null and rasterLngLat != ''">#{rasterLngLat},</if>
69
 			<if test="rasterLngLat != null and rasterLngLat != ''">#{rasterLngLat},</if>
62
 			<if test="typeName != null and typeName != ''">#{typeName},</if>
70
 			<if test="typeName != null and typeName != ''">#{typeName},</if>
63
 			<if test="status != null">#{status},</if>
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
 		</trim>
75
 		</trim>
65
 	</insert>
76
 	</insert>
66
 
77
 
@@ -76,6 +87,9 @@
76
 			raster_lng_lat = #{rasterLngLat},
87
 			raster_lng_lat = #{rasterLngLat},
77
 			type_name = #{typeName},
88
 			type_name = #{typeName},
78
 			status = #{status},
89
 			status = #{status},
90
+		    equip_code = #{equipCode},
91
+		    device_status = #{deviceStatus},
92
+		    brand = #{brand},
79
 		</trim>
93
 		</trim>
80
 		where equipment_id = #{equipmentId}
94
 		where equipment_id = #{equipmentId}
81
 	</update>
95
 	</update>

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

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

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

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

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

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

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

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

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

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