liaoyitao преди 4 месеца
родител
ревизия
1e24caffa1

+ 15 - 0
src/main/java/com/lqkj/info/entity/TrafficInfo.java

@@ -37,6 +37,10 @@ public class TrafficInfo extends BaseEntity
37 37
     @Excel(name = "颜色")
38 38
     private String colour;
39 39
 
40
+
41
+    /** 坐标 */
42
+    private Object location;
43
+
40 44
     public void setTrafficId(Integer trafficId) 
41 45
     {
42 46
         this.trafficId = trafficId;
@@ -92,6 +96,16 @@ public class TrafficInfo extends BaseEntity
92 96
         return colour;
93 97
     }
94 98
 
99
+    public void setLocation(Object location)
100
+    {
101
+        this.location = location;
102
+    }
103
+
104
+    public Object getLocation()
105
+    {
106
+        return location;
107
+    }
108
+
95 109
     @Override
96 110
     public String toString() {
97 111
         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -101,6 +115,7 @@ public class TrafficInfo extends BaseEntity
101 115
             .append("amount", getAmount())
102 116
             .append("memo", getMemo())
103 117
             .append("colour", getColour())
118
+            .append("location", getLocation())
104 119
             .toString();
105 120
     }
106 121
 }

+ 2 - 2
src/main/java/com/lqkj/info/service/AreaInfoService.java

@@ -60,7 +60,7 @@ public class AreaInfoService
60 60
     
61 61
     public int insertAreaInfo(AreaInfo areaInfo)
62 62
     {
63
-        areaInfo.setLocation(StringEscapeUtils.unescapeHtml(areaInfo.getLocation().toString()));
63
+//        areaInfo.setLocation(StringEscapeUtils.unescapeHtml(areaInfo.getLocation().toString()));
64 64
         areaInfo.setMemo(StringEscapeUtils.unescapeHtml(areaInfo.getMemo()));
65 65
         return areaInfoMapper.insertAreaInfo(areaInfo);
66 66
     }
@@ -74,7 +74,7 @@ public class AreaInfoService
74 74
     
75 75
     public int updateAreaInfo(AreaInfo areaInfo)
76 76
     {
77
-        areaInfo.setLocation(StringEscapeUtils.unescapeHtml(areaInfo.getLocation().toString()));
77
+//        areaInfo.setLocation(StringEscapeUtils.unescapeHtml(areaInfo.getLocation().toString()));
78 78
         areaInfo.setMemo(StringEscapeUtils.unescapeHtml(areaInfo.getMemo()));
79 79
         return areaInfoMapper.updateAreaInfo(areaInfo);
80 80
     }

+ 4 - 0
src/main/java/com/lqkj/info/service/TrafficInfoService.java

@@ -1,6 +1,8 @@
1 1
 package com.lqkj.info.service;
2 2
 
3 3
 import java.util.List;
4
+
5
+import org.apache.commons.lang.StringEscapeUtils;
4 6
 import org.springframework.beans.factory.annotation.Autowired;
5 7
 import org.springframework.stereotype.Service;
6 8
 import com.lqkj.info.mapper.TrafficInfoMapper;
@@ -50,6 +52,7 @@ public class TrafficInfoService
50 52
     
51 53
     public int insertTrafficInfo(TrafficInfo trafficInfo)
52 54
     {
55
+//        trafficInfo.setLocation(StringEscapeUtils.unescapeHtml(trafficInfo.getLocation().toString()));
53 56
         return trafficInfoMapper.insertTrafficInfo(trafficInfo);
54 57
     }
55 58
 
@@ -62,6 +65,7 @@ public class TrafficInfoService
62 65
     
63 66
     public int updateTrafficInfo(TrafficInfo trafficInfo)
64 67
     {
68
+//        trafficInfo.setLocation(StringEscapeUtils.unescapeHtml(trafficInfo.getLocation().toString()));
65 69
         return trafficInfoMapper.updateTrafficInfo(trafficInfo);
66 70
     }
67 71
 

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

@@ -1,7 +1,12 @@
1 1
 package com.lqkj.ioc.controller;
2 2
 
3 3
 
4
+import com.lqkj.common.core.model.ResultUtil;
5
+import com.lqkj.ioc.service.TrafficSystemService;
4 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;
5 10
 import org.springframework.web.bind.annotation.RequestMapping;
6 11
 import org.springframework.web.bind.annotation.RestController;
7 12
 
@@ -10,4 +15,13 @@ import org.springframework.web.bind.annotation.RestController;
10 15
 @RequestMapping("/ioc/trafficSystem")
11 16
 public class TrafficSystemController {
12 17
 
18
+    @Autowired
19
+    private TrafficSystemService trafficSystemService;
20
+
21
+    @ApiOperation("公共交通资源")
22
+    @GetMapping("/publicTransportRes")
23
+    public ResultUtil publicTransportRes() {
24
+        return ResultUtil.success(trafficSystemService.publicTransportRes());
25
+    }
26
+
13 27
 }

+ 19 - 0
src/main/java/com/lqkj/ioc/mapper/TrafficSystemMapper.java

@@ -0,0 +1,19 @@
1
+package com.lqkj.ioc.mapper;
2
+
3
+import org.apache.ibatis.annotations.Mapper;
4
+import org.apache.ibatis.annotations.Param;
5
+import org.apache.ibatis.annotations.Select;
6
+
7
+@Mapper
8
+public interface TrafficSystemMapper {
9
+
10
+    @Select("SELECT count(*) FROM traffic_info WHERE type_id =#{type_id}")
11
+    int countTrafficByTypeId(@Param("type_id") int type_id);
12
+
13
+
14
+    @Select("SELECT count(*) FROM traffic_info ti " +
15
+            "LEFT JOIN station_info si ON ti.traffic_id = si.traffic_id " +
16
+            "WHERE ti.type_id =#{type_id}"
17
+    )
18
+    int countStationByTypeId(@Param("type_id") int type_id);
19
+}

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

@@ -0,0 +1,25 @@
1
+package com.lqkj.ioc.service;
2
+
3
+
4
+import com.lqkj.ioc.mapper.TrafficSystemMapper;
5
+import org.springframework.beans.factory.annotation.Autowired;
6
+import org.springframework.stereotype.Service;
7
+
8
+import java.util.HashMap;
9
+import java.util.Map;
10
+
11
+@Service
12
+public class TrafficSystemService {
13
+
14
+    @Autowired
15
+    private TrafficSystemMapper trafficSystemMapper;
16
+
17
+
18
+    public Map publicTransportRes() {
19
+        HashMap<String, Object> result = new HashMap<>();
20
+        result.put("地铁线路", trafficSystemMapper.countTrafficByTypeId(1));
21
+        result.put("地铁站点", trafficSystemMapper.countStationByTypeId(1));
22
+        result.put("公交线路", trafficSystemMapper.countTrafficByTypeId(2));
23
+        return result;
24
+    }
25
+}

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

@@ -83,7 +83,7 @@ public class SysDictData extends BaseEntity
83 83
         this.dictLabel = dictLabel;
84 84
     }
85 85
 
86
-    @Size(min = 0, max = 100, message = "字典键值长度不能超过100个字符")
86
+    @Size(min = 0, max = 255, message = "字典键值长度不能超过100个字符")
87 87
     public String getDictValue()
88 88
     {
89 89
         return dictValue;

+ 24 - 12
src/main/java/com/lqkj/type/entity/TrafficType.java

@@ -46,7 +46,18 @@ public class TrafficType extends BaseEntity
46 46
     @Excel(name = "颜色")
47 47
     private String colour;
48 48
 
49
-    public void setTypeId(Integer typeId) 
49
+    /** 图标 */
50
+    private String icon;
51
+
52
+    public String getIcon() {
53
+        return icon;
54
+    }
55
+
56
+    public void setIcon(String icon) {
57
+        this.icon = icon;
58
+    }
59
+
60
+    public void setTypeId(Integer typeId)
50 61
     {
51 62
         this.typeId = typeId;
52 63
     }
@@ -130,16 +141,17 @@ public class TrafficType extends BaseEntity
130 141
 
131 142
     @Override
132 143
     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();
144
+        return "TrafficType{" +
145
+                "typeId=" + typeId +
146
+                ", parentId=" + parentId +
147
+                ", typeName='" + typeName + '\'' +
148
+                ", click=" + click +
149
+                ", search=" + search +
150
+                ", description='" + description + '\'' +
151
+                ", orderId=" + orderId +
152
+                ", memo='" + memo + '\'' +
153
+                ", colour='" + colour + '\'' +
154
+                ", icon='" + icon + '\'' +
155
+                '}';
144 156
     }
145 157
 }

+ 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());

+ 189 - 1
src/main/resources/db/migration/V1_5__20241111_menu.sql

@@ -219,4 +219,192 @@ values('主体信息查询', (select * from temp_menu), '1',  '#', '', false, tr
219 219
     ('主体信息新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:organizationInfo:add',          '#', 'admin', now(), '', null, ''),
220 220
     ('主体信息修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:organizationInfo:edit',         '#', 'admin', now(), '', null, ''),
221 221
     ('主体信息删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:organizationInfo:remove',       '#', 'admin', now(), '', null, ''),
222
-    ('主体信息导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:organizationInfo:export',       '#', 'admin', now(), '', null, '');
222
+    ('主体信息导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:organizationInfo:export',       '#', 'admin', now(), '', null, '');
223
+
224
+
225
+
226
+
227
+-- 菜单 SQL
228
+with temp_menu as (
229
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
230
+values('规划对象', '2200', '1', 'planInfo', 'info/planInfo/index', false, true, 'C', true, true, 'info:planInfo:list', 'operation', 'admin', now(), '', null, '规划对象菜单') returning menu_id
231
+)
232
+-- 按钮 SQL
233
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
234
+values('规划对象查询', (select * from temp_menu), '1',  '#', '', false, true, 'F', true, true, 'info:planInfo:query',        '#', 'admin', now(), '', null, ''),
235
+('规划对象新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:planInfo:add',          '#', 'admin', now(), '', null, ''),
236
+('规划对象修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:planInfo:edit',         '#', 'admin', now(), '', null, ''),
237
+('规划对象删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:planInfo:remove',       '#', 'admin', now(), '', null, ''),
238
+('规划对象导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:planInfo:export',       '#', 'admin', now(), '', null, '');
239
+
240
+
241
+
242
+-- 菜单 SQL
243
+with temp_menu as (
244
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
245
+values('政策信息', '2200', '1', 'policyInfo', 'info/policyInfo/index', false, true, 'C', true, true, 'info:policyInfo:list', 'operation', 'admin', now(), '', null, '政策信息菜单') returning menu_id
246
+)
247
+-- 按钮 SQL
248
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
249
+values('政策信息查询', (select * from temp_menu), '1',  '#', '', false, true, 'F', true, true, 'info:policyInfo:query',        '#', 'admin', now(), '', null, ''),
250
+('政策信息新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:policyInfo:add',          '#', 'admin', now(), '', null, ''),
251
+('政策信息修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:policyInfo:edit',         '#', 'admin', now(), '', null, ''),
252
+('政策信息删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:policyInfo:remove',       '#', 'admin', now(), '', null, ''),
253
+('政策信息导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:policyInfo:export',       '#', 'admin', now(), '', null, '');
254
+
255
+
256
+
257
+
258
+-- 菜单 SQL
259
+with temp_menu as (
260
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
261
+values('房间信息', '2200', '1', 'roomInfo', 'info/roomInfo/index', false, true, 'C', true, true, 'info:roomInfo:list', 'operation', 'admin', now(), '', null, '房间信息菜单') returning menu_id
262
+)
263
+-- 按钮 SQL
264
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
265
+values('房间信息查询', (select * from temp_menu), '1',  '#', '', false, true, 'F', true, true, 'info:roomInfo:query',        '#', 'admin', now(), '', null, ''),
266
+('房间信息新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:roomInfo:add',          '#', 'admin', now(), '', null, ''),
267
+('房间信息修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:roomInfo:edit',         '#', 'admin', now(), '', null, ''),
268
+('房间信息删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:roomInfo:remove',       '#', 'admin', now(), '', null, ''),
269
+('房间信息导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:roomInfo:export',       '#', 'admin', now(), '', null, '');
270
+
271
+
272
+
273
+
274
+-- 菜单 SQL
275
+with temp_menu as (
276
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
277
+values('站点信息', '2200', '1', 'stationInfo', 'info/stationInfo/index', false, true, 'C', true, true, 'info:stationInfo:list', 'operation', 'admin', now(), '', null, '站点信息菜单') returning menu_id
278
+)
279
+-- 按钮 SQL
280
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
281
+values('站点信息查询', (select * from temp_menu), '1',  '#', '', false, true, 'F', true, true, 'info:stationInfo:query',        '#', 'admin', now(), '', null, ''),
282
+('站点信息新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:stationInfo:add',          '#', 'admin', now(), '', null, ''),
283
+('站点信息修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:stationInfo:edit',         '#', 'admin', now(), '', null, ''),
284
+('站点信息删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:stationInfo:remove',       '#', 'admin', now(), '', null, ''),
285
+('站点信息导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:stationInfo:export',       '#', 'admin', now(), '', null, '');
286
+
287
+
288
+
289
+
290
+-- 菜单 SQL
291
+with temp_menu as (
292
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
293
+values('交通对象', '2200', '1', 'trafficInfo', 'info/trafficInfo/index', false, true, 'C', true, true, 'info:trafficInfo:list', 'operation', 'admin', now(), '', null, '交通对象菜单') returning menu_id
294
+)
295
+-- 按钮 SQL
296
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
297
+values('交通对象查询', (select * from temp_menu), '1',  '#', '', false, true, 'F', true, true, 'info:trafficInfo:query',        '#', 'admin', now(), '', null, ''),
298
+('交通对象新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:trafficInfo:add',          '#', 'admin', now(), '', null, ''),
299
+('交通对象修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:trafficInfo:edit',         '#', 'admin', now(), '', null, ''),
300
+('交通对象删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:trafficInfo:remove',       '#', 'admin', now(), '', null, ''),
301
+('交通对象导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:trafficInfo:export',       '#', 'admin', now(), '', null, '');
302
+
303
+
304
+
305
+
306
+INSERT INTO "public"."sys_menu" ("menu_id", "menu_name", "parent_id", "order_num", "path", "component", "query", "is_frame", "is_cache", "menu_type", "visible", "status", "perms", "icon", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2279, '城市推荐', 0, 0, 'recommend', NULL, NULL, 'f', 't', 'M', 't', 't', NULL, 'validCode', '超级管理员', '2024-11-18 11:10:53.179662', NULL, NULL, NULL);
307
+
308
+
309
+
310
+
311
+
312
+-- 菜单 SQL
313
+with temp_menu as (
314
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
315
+values('综合分析', '2279', '1', 'synthesisAnalyze', 'view/synthesisAnalyze/index', false, true, 'C', true, true, 'view:synthesisAnalyze:list', 'operation', 'admin', now(), '', null, '综合分析菜单') returning menu_id
316
+)
317
+-- 按钮 SQL
318
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
319
+values('综合分析查询', (select * from temp_menu), '1',  '#', '', false, true, 'F', true, true, 'view:synthesisAnalyze:query',        '#', 'admin', now(), '', null, ''),
320
+('综合分析新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'view:synthesisAnalyze:add',          '#', 'admin', now(), '', null, ''),
321
+('综合分析修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'view:synthesisAnalyze:edit',         '#', 'admin', now(), '', null, ''),
322
+('综合分析删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'view:synthesisAnalyze:remove',       '#', 'admin', now(), '', null, ''),
323
+('综合分析导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'view:synthesisAnalyze:export',       '#', 'admin', now(), '', null, '');
324
+
325
+
326
+
327
+
328
+
329
+-- 菜单 SQL
330
+with temp_menu as (
331
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
332
+values('模型信息', '2200', '1', 'modelInfo', 'info/modelInfo/index', false, true, 'C', true, true, 'info:modelInfo:list', 'operation', 'admin', now(), '', null, '模型信息菜单') returning menu_id
333
+)
334
+-- 按钮 SQL
335
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
336
+values('模型信息查询', (select * from temp_menu), '1',  '#', '', false, true, 'F', true, true, 'info:modelInfo:query',        '#', 'admin', now(), '', null, ''),
337
+('模型信息新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:modelInfo:add',          '#', 'admin', now(), '', null, ''),
338
+('模型信息修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:modelInfo:edit',         '#', 'admin', now(), '', null, ''),
339
+('模型信息删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:modelInfo:remove',       '#', 'admin', now(), '', null, ''),
340
+('模型信息导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:modelInfo:export',       '#', 'admin', now(), '', null, '');
341
+
342
+SELECT setval('sys_menu_menu_id_seq', (SELECT MAX(menu_id) FROM sys_menu));
343
+
344
+ALTER TABLE organization_info ADD COLUMN audio varchar(255);
345
+comment on column organization_info.audio is '视频';
346
+
347
+
348
+
349
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (102, '运营体系', 'operation_system', 't', '超级管理员', '2024-11-26 13:50:37.402144', NULL, NULL, NULL);
350
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (103, '服务体系', 'service_system', 't', '超级管理员', '2024-11-26 13:55:20.453367', NULL, NULL, NULL);
351
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (104, '增长趋势', 'growth_trend', 't', '超级管理员', '2024-11-26 14:01:21.516976', NULL, NULL, NULL);
352
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (105, '企业服务', 'enterprise_service', 't', '超级管理员', '2024-11-26 14:04:23.223561', NULL, NULL, NULL);
353
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (106, '轨道路实时监测', 'railway_realTime_monitoring', 't', '超级管理员', '2024-11-26 14:08:52.391697', NULL, NULL, NULL);
354
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (107, '重点区域配套设施', 'key_area_support_facilities', 't', '超级管理员', '2024-11-26 14:12:19.205583', NULL, NULL, NULL);
355
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (108, '重点区域植被', 'key_area_vegetation', 't', '超级管理员', '2024-11-26 14:16:10.188997', NULL, NULL, NULL);
356
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (109, '主要区域拥堵', 'main_area_congestion', 't', '超级管理员', '2024-11-26 14:18:26.133476', NULL, NULL, NULL);
357
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (110, '建筑土地概况', 'building_land_overview', 't', '超级管理员', '2024-11-26 17:13:04.015269', NULL, NULL, NULL);
358
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (111, '建筑土地统计', 'building_land_statistics', 't', '超级管理员', '2024-11-26 17:18:07.640768', NULL, NULL, NULL);
359
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (112, '成本效益统计', 'cost_benefit_stat', 't', '超级管理员', '2024-11-27 14:09:53.336277', NULL, NULL, NULL);
360
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (113, '成本效益分析', 'cost_benefit_analysis', 't', '超级管理员', '2024-11-27 18:41:59.075476', NULL, NULL, NULL);
361
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (114, '主要区域车流量情况', 'main_area_traffic_flow', 't', '超级管理员', '2024-11-27 18:50:00.433443', NULL, NULL, NULL);
362
+INSERT INTO "public"."sys_dict_type" ("dict_id", "dict_name", "dict_type", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (101, '道路实时路况监测', 'road-realtime-traffic', 't', '超级管理员', '2024-11-26 10:19:45.947831', '超级管理员', '2024-11-27 19:36:39.630993', NULL);
363
+
364
+SELECT setval('sys_dict_type_dict_id_seq', (SELECT MAX(dict_id) FROM sys_dict_type));
365
+
366
+
367
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (119, 1, '政策咨询', '385/个', 'enterprise_service', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:04:53.442761', NULL, NULL, NULL);
368
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (120, 2, '工商服务', '25/个', 'enterprise_service', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:05:20.327122', NULL, NULL, NULL);
369
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (121, 3, '法律服务', '128/个', 'enterprise_service', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:05:40.933106', NULL, NULL, NULL);
370
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (122, 4, '财税服务', '235/个', 'enterprise_service', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:06:03.814214', NULL, NULL, NULL);
371
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (123, 5, '行政服务', '25/个', 'enterprise_service', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:06:24.501192', NULL, NULL, NULL);
372
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (124, 6, '人才服务', '125/个', 'enterprise_service', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:06:42.086761', NULL, NULL, NULL);
373
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (125, 1, '客流量超限:', '30%', 'railway_realTime_monitoring', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:09:28.257169', NULL, NULL, NULL);
374
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (126, 2, '范围故障', '1', 'railway_realTime_monitoring', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:09:44.849027', NULL, NULL, NULL);
375
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (127, 4, '进出站超限:', '50%', 'railway_realTime_monitoring', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:10:03.912008', '超级管理员', '2024-11-27 19:41:07.646659', NULL);
376
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (128, 1, '路灯', '65/盏', 'key_area_support_facilities', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:12:54.220285', NULL, NULL, NULL);
377
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (129, 2, '信号灯', '65/盏', 'key_area_support_facilities', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:13:09.607786', NULL, NULL, NULL);
378
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (130, 3, '摄像头', '44/个', 'key_area_support_facilities', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:13:26.696732', NULL, NULL, NULL);
379
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (131, 4, '路灯状态正常率', '75%', 'key_area_support_facilities', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:13:54.044901', NULL, NULL, NULL);
380
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (132, 5, '信号灯状态正常率', '80%', 'key_area_support_facilities', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:14:20.425779', NULL, NULL, NULL);
381
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (133, 6, '摄像头状态正常率', '75%', 'key_area_support_facilities', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:14:45.635276', NULL, NULL, NULL);
382
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (138, 1, '景区周边', '60', 'main_area_congestion', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:18:47.877352', NULL, NULL, NULL);
383
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (139, 2, '高架桥', '30', 'main_area_congestion', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:18:58.578353', NULL, NULL, NULL);
384
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (140, 3, '地铁周边', '20', 'main_area_congestion', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:19:15.167956', NULL, NULL, NULL);
385
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (141, 4, '高铁站周边', '15', 'main_area_congestion', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:19:29.632493', NULL, NULL, NULL);
386
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (142, 1, '土地总面积', '63165654㎡', 'building_land_overview', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 17:14:22.918916', '超级管理员', '2024-11-27 21:23:21.779921', NULL);
387
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (143, 2, '实施规划总面积', '631654335㎡', 'building_land_overview', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 17:15:25.94592', '超级管理员', '2024-11-27 21:23:27.476002', NULL);
388
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (144, 3, '总计人口', '165654人', 'building_land_overview', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 17:15:46.687935', '超级管理员', '2024-11-27 21:24:06.422606', NULL);
389
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (145, 4, '实施面积', '23245614㎡', 'building_land_overview', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 17:16:11.405326', '超级管理员', '2024-11-27 21:23:31.425318', NULL);
390
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (136, 3, '科创园', '750', 'key_area_vegetation', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:17:15.521613', '超级管理员', '2024-11-28 05:17:16.049961', NULL);
391
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (137, 4, '金茂悦', '650', 'key_area_vegetation', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:17:27.688341', '超级管理员', '2024-11-28 05:17:34.241364', NULL);
392
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (146, 5, '竣工面积', '1165654㎡', 'building_land_overview', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 17:16:29.858606', '超级管理员', '2024-11-27 21:23:34.872682', NULL);
393
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (147, 6, '开发面积', '63165654㎡', 'building_land_overview', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 17:16:47.177077', '超级管理员', '2024-11-27 21:23:37.64406', NULL);
394
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (154, 1, '成本', '820, 932, 901, 934', 'cost_benefit_stat', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 14:28:32.823209', '超级管理员', '2024-11-27 23:09:18.464354', '');
395
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (155, 2, '收益', '789, 889, 976, 994', 'cost_benefit_stat', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 16:35:41.823213', '超级管理员', '2024-11-27 23:22:21.2707', NULL);
396
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (156, 3, '总占比', '60%', 'cost_benefit_stat', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 16:44:46.94886', '超级管理员', '2024-11-27 19:02:19.729605', NULL);
397
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (157, 6, '建筑土地统计', '280,430,310,400,210,370', 'building_land_statistics', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 17:33:03.51135', '超级管理员', '2024-11-27 17:34:02.226899', NULL);
398
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (158, 1, '市场风险', '35.17%', 'cost_benefit_analysis', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 18:43:03.282318', '超级管理员', '2024-11-27 18:43:07.420497', NULL);
399
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (159, 2, '财务风险', '28.57%', 'cost_benefit_analysis', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 18:43:37.766606', '超级管理员', '2024-11-27 18:44:59.836162', NULL);
400
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (160, 3, '操作风险', '21.43%', 'cost_benefit_analysis', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 18:44:18.368932', '超级管理员', '2024-11-27 18:45:05.257761', NULL);
401
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (161, 4, '法律风险', '14.29%', 'cost_benefit_analysis', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 18:44:50.36676', '超级管理员', '2024-11-27 18:45:09.223132', NULL);
402
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (162, 1, '今日', '20,33,42,33,53,61,45', 'main_area_traffic_flow', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 18:53:13.313762', '超级管理员', '2024-11-27 18:57:26.366458', NULL);
403
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (163, 2, '昨日环比', '25,38,46,39,57,66,49', 'main_area_traffic_flow', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 18:57:21.112725', '超级管理员', '2024-11-27 18:57:30.133556', NULL);
404
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (164, 0, '上周环比', '28,39,48,42,59,69,55', 'main_area_traffic_flow', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 18:58:00.279392', NULL, NULL, NULL);
405
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (165, 3, '市内三环内拥堵量:', '18km/h', 'road-realtime-traffic', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 19:38:28.100126', '超级管理员', '2024-11-27 19:39:57.127274', NULL);
406
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (166, 4, '安全态势:', '0.8安全', 'road-realtime-traffic', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 19:39:07.919651', '超级管理员', '2024-11-27 19:40:01.828812', NULL);
407
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (167, 3, '客流量超限:', '15%', 'railway_realTime_monitoring', NULL, 'default', 'f', 't', '超级管理员', '2024-11-27 19:41:03.178779', '超级管理员', '2024-11-27 19:41:11.238614', NULL);
408
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (134, 1, '第八再升水公园', '2350', 'key_area_vegetation', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:16:42.06559', '超级管理员', '2024-11-28 05:16:42.70318', NULL);
409
+INSERT INTO "public"."sys_dict_data" ("dict_code", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "status", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (135, 2, '川西营小学', '1500', 'key_area_vegetation', NULL, 'default', 'f', 't', '超级管理员', '2024-11-26 14:16:56.963256', '超级管理员', '2024-11-28 05:16:58.467162', NULL);
410
+SELECT setval('sys_dict_data_dict_code_seq', (SELECT MAX(dict_code) FROM sys_dict_data));

+ 61 - 0
src/main/resources/db/migration/V1_6__20241126_icon.sql

@@ -0,0 +1,61 @@
1
+CREATE TABLE "public"."synthesis_analyze"(
2
+	id	 SERIAL	not null,
3
+	orientation	text	null,
4
+	bonus_policy text	null,
5
+	planning_layout varchar(255)	null,
6
+	audio_url	varchar(255)	null,
7
+	constraint PK_SYNTHESIS_ANALYZE primary key (id)
8
+);
9
+
10
+
11
+ALTER TABLE traffic_type ADD COLUMN icon varchar(255);
12
+comment on column traffic_type.icon is '图标';
13
+
14
+
15
+
16
+ALTER TABLE area_type ADD COLUMN icon varchar(255);
17
+comment on column area_type.icon is '图标';
18
+
19
+
20
+ALTER TABLE building_type ADD COLUMN icon varchar(255);
21
+comment on column building_type.icon is '图标';
22
+
23
+
24
+ALTER TABLE equipment_type ADD COLUMN icon varchar(255);
25
+comment on column equipment_type.icon is '图标';
26
+
27
+
28
+ALTER TABLE house_type ADD COLUMN icon varchar(255);
29
+comment on column house_type.icon is '图标';
30
+
31
+
32
+ALTER TABLE organization_type ADD COLUMN icon varchar(255);
33
+comment on column organization_type.icon is '图标';
34
+
35
+
36
+ALTER TABLE plan_type ADD COLUMN icon varchar(255);
37
+comment on column plan_type.icon is '图标';
38
+
39
+
40
+ALTER TABLE room_type ADD COLUMN icon varchar(255);
41
+comment on column room_type.icon is '图标';
42
+
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);
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
+SELECT setval('traffic_type_type_id_seq', (SELECT MAX(type_id) FROM traffic_type));
47
+
48
+
49
+ALTER TABLE traffic_info add COLUMN "location" jsonb;
50
+comment on column traffic_info.location is '坐标';
51
+
52
+ALTER TABLE area_info ALTER COLUMN memo TYPE VARCHAR(9999);
53
+
54
+ALTER TABLE model_info add COLUMN "plan_id" INT;
55
+comment on column model_info.plan_id is '方案id';
56
+
57
+
58
+ALTER TABLE sys_dict_data ALTER COLUMN dict_value TYPE VARCHAR(255);
59
+
60
+ALTER TABLE area_info
61
+ALTER COLUMN location SET DEFAULT '{"type": "Polygon", "coordinates": [[]]}';

+ 5 - 1
src/main/resources/mapper/info/TrafficInfoMapper.xml

@@ -11,10 +11,11 @@
11 11
 		<result property="amount"    column="amount"    />
12 12
 		<result property="memo"    column="memo"    />
13 13
 		<result property="colour"    column="colour"    />
14
+		<result property="location"    column="location"    />
14 15
 	</resultMap>
15 16
 
16 17
 	<sql id="selectTrafficInfoVo">
17
-		select traffic_id, type_id, traffic_name, amount, memo, colour from traffic_info
18
+		select traffic_id, type_id, traffic_name, amount, memo, colour, location from traffic_info
18 19
 	</sql>
19 20
 
20 21
 	<select id="selectTrafficInfoList" parameterType="TrafficInfo" resultMap="TrafficInfoResult">
@@ -39,6 +40,7 @@
39 40
 			<if test="amount != null">amount,</if>
40 41
 			<if test="memo != null and memo != ''">memo,</if>
41 42
 			<if test="colour != null and colour != ''">colour,</if>
43
+		    <if test="location != null and location != ''">location,</if>
42 44
 		</trim>
43 45
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
44 46
 			<if test="typeId != null">#{typeId},</if>
@@ -46,6 +48,7 @@
46 48
 			<if test="amount != null">#{amount},</if>
47 49
 			<if test="memo != null and memo != ''">#{memo},</if>
48 50
 			<if test="colour != null and colour != ''">#{colour},</if>
51
+		    <if test="location != null and location != ''">#{location,jdbcType=OTHER,typeHandler=com.lqkj.framework.sql.JsonbTypeHandler},</if>
49 52
 		</trim>
50 53
 	</insert>
51 54
 
@@ -57,6 +60,7 @@
57 60
 			amount = #{amount},
58 61
 			memo = #{memo},
59 62
 			colour = #{colour},
63
+		    location = #{location,jdbcType=OTHER,typeHandler=com.lqkj.framework.sql.JsonbTypeHandler},
60 64
 		</trim>
61 65
 		where traffic_id = #{trafficId}
62 66
 	</update>

+ 5 - 1
src/main/resources/mapper/type/TrafficTypeMapper.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="selectTrafficTypeVo">
20
-		select type_id, parent_id, type_name, click, search, description, order_id, memo, colour from traffic_type
21
+		select type_id, parent_id, type_name, click, search, description, order_id, memo, colour, icon from traffic_type
21 22
 	</sql>
22 23
 
23 24
 	<select id="selectTrafficTypeList" parameterType="TrafficType" resultMap="TrafficTypeResult">
@@ -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>