Преглед на файлове

增加模型保存位置信息

liaoyitao преди 3 месеца
родител
ревизия
c9ec5ef129

+ 12 - 0
src/main/java/com/lqkj/info/entity/ModelInfo.java

@@ -33,6 +33,9 @@ public class ModelInfo extends BaseEntity
33 33
     @Excel(name = "方案id")
34 34
     private Integer planId;
35 35
 
36
+    /** 位置信息 */
37
+    private Object trans;
38
+
36 39
     public void setModelId(Integer modelId) 
37 40
     {
38 41
         this.modelId = modelId;
@@ -79,6 +82,14 @@ public class ModelInfo extends BaseEntity
79 82
         return planId;
80 83
     }
81 84
 
85
+    public Object getTrans() {
86
+        return trans;
87
+    }
88
+
89
+    public void setTrans(Object trans) {
90
+        this.trans = trans;
91
+    }
92
+
82 93
     @Override
83 94
     public String toString() {
84 95
         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -87,6 +98,7 @@ public class ModelInfo extends BaseEntity
87 98
             .append("originalPath", getOriginalPath())
88 99
             .append("modelIcon", getModelIcon())
89 100
             .append("planId", getPlanId())
101
+            .append("trans", getTrans())
90 102
             .toString();
91 103
     }
92 104
 }

+ 7 - 6
src/main/java/com/lqkj/ioc/controller/SmartParkController.java

@@ -7,6 +7,7 @@ import io.swagger.annotations.Api;
7 7
 import io.swagger.annotations.ApiOperation;
8 8
 import org.springframework.beans.factory.annotation.Autowired;
9 9
 import org.springframework.web.bind.annotation.GetMapping;
10
+import org.springframework.web.bind.annotation.PathVariable;
10 11
 import org.springframework.web.bind.annotation.RequestMapping;
11 12
 import org.springframework.web.bind.annotation.RestController;
12 13
 
@@ -20,15 +21,15 @@ public class SmartParkController {
20 21
 
21 22
 
22 23
     @ApiOperation("智慧园区-园区新增入驻情况")
23
-    @GetMapping("/addParkNewTenant")
24
-    public ResultUtil addParkNewTenant(){
25
-        return ResultUtil.success(smartParkService.addParkNewTenant());
24
+    @GetMapping("/addParkNewTenant/{parkId}")
25
+    public ResultUtil addParkNewTenant(@PathVariable("parkId") Integer parkId){
26
+        return ResultUtil.success(smartParkService.addParkNewTenant(parkId));
26 27
     }
27 28
 
28 29
 
29 30
     @ApiOperation("智慧园区-园区消防")
30
-    @GetMapping("/getParkFireProtectionInfo")
31
-    public ResultUtil getParkFireProtectionInfo(){
32
-        return ResultUtil.success(smartParkService.getParkFireProtectionInfo());
31
+    @GetMapping("/getParkFireProtectionInfo/{parkId}")
32
+    public ResultUtil getParkFireProtectionInfo(@PathVariable("parkId") Integer parkId){
33
+        return ResultUtil.success(smartParkService.getParkFireProtectionInfo(parkId));
33 34
     }
34 35
 }

+ 5 - 2
src/main/java/com/lqkj/ioc/mapper/SmartParkMapper.java

@@ -2,6 +2,7 @@ package com.lqkj.ioc.mapper;
2 2
 
3 3
 
4 4
 import org.apache.ibatis.annotations.Mapper;
5
+import org.apache.ibatis.annotations.Param;
5 6
 import org.apache.ibatis.annotations.Select;
6 7
 
7 8
 import java.util.List;
@@ -29,9 +30,10 @@ public interface SmartParkMapper {
29 30
             "LEFT JOIN organization_info C  " +
30 31
             "    ON EXTRACT(YEAR FROM C.enter_time) = EXTRACT(YEAR FROM M.MONTH) " +
31 32
             "    AND EXTRACT(MONTH FROM C.enter_time) = EXTRACT(MONTH FROM M.MONTH) " +
33
+            "    AND C.park_id = #{parkId} " +
32 34
             "GROUP BY YEAR, MONTH " +
33 35
             "ORDER BY YEAR DESC, MONTH;")
34
-    List<Map<String, Object>> addParkNewTenant();
36
+    List<Map<String, Object>> addParkNewTenant(@Param("parkId") Integer parkId);
35 37
 
36 38
 
37 39
     @Select("WITH months AS ( SELECT generate_series(date_trunc('year', CURRENT_DATE), " +
@@ -45,6 +47,7 @@ public interface SmartParkMapper {
45 47
             "LEFT JOIN forewarning_info r " +
46 48
             "ON EXTRACT(MONTH FROM r.create_time) = EXTRACT(MONTH FROM m.month) " +
47 49
             "AND EXTRACT(YEAR FROM r.create_time) = EXTRACT(YEAR FROM CURRENT_DATE)  " +
50
+            "AND r.park_id = #{parkId} " +
48 51
             "GROUP BY m.month ORDER BY month;")
49
-    List<Map<String, Object>> getParkFireProtectionInfo();
52
+    List<Map<String, Object>> getParkFireProtectionInfo(@Param("parkId") Integer parkId);
50 53
 }

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

@@ -15,11 +15,11 @@ public class SmartParkService {
15 15
     private SmartParkMapper smartParkMapper;
16 16
 
17 17
 
18
-    public List<Map<String,Object>> addParkNewTenant() {
19
-        return smartParkMapper.addParkNewTenant();
18
+    public List<Map<String,Object>> addParkNewTenant(Integer parkId) {
19
+        return smartParkMapper.addParkNewTenant(parkId);
20 20
     }
21 21
 
22
-    public List<Map<String,Object>> getParkFireProtectionInfo() {
23
-        return smartParkMapper.getParkFireProtectionInfo();
22
+    public List<Map<String,Object>> getParkFireProtectionInfo(Integer parkId) {
23
+        return smartParkMapper.getParkFireProtectionInfo(parkId);
24 24
     }
25 25
 }

+ 16 - 7
src/main/resources/db/migration/V1_8__20241216.sql

@@ -14,13 +14,18 @@ ALTER TABLE developments
14 14
     add COLUMN if not exists create_time TIMESTAMP;
15 15
 comment on column developments.create_time is '创建时间';
16 16
 
17
-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 (2286, '发展定位', 2200, 1, 'development', 'info/development/index', NULL, 'f', 't', 'C', 't', 't', 'info:development:list', 'operation', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '发展定位菜单');
18
-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 (2287, '发展定位查询', 2286, 1, '#', '', NULL, 'f', 't', 'F', 't', 't', 'info:development:query', '#', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '');
19
-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 (2288, '发展定位新增', 2286, 2, '#', '', NULL, 'f', 't', 'F', 't', 't', 'info:development:add', '#', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '');
20
-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 (2289, '发展定位修改', 2286, 3, '#', '', NULL, 'f', 't', 'F', 't', 't', 'info:development:edit', '#', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '');
21
-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 (2290, '发展定位删除', 2286, 4, '#', '', NULL, 'f', 't', 'F', 't', 't', 'info:development:remove', '#', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '');
22
-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 (2291, '发展定位导出', 2286, 5, '#', '', NULL, 'f', 't', 'F', 't', 't', 'info:development:export', '#', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '');
23
-
17
+-- 菜单 SQL
18
+with temp_menu as (
19
+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)
20
+values('发展定位', '2200', '1', 'development', 'info/development/index', false, true, 'C', true, true, 'info:development:list', 'operation', 'admin', now(), '', null, '发展定位菜单') returning menu_id
21
+    )
22
+-- 按钮 SQL
23
+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)
24
+values('发展定位查询', (select * from temp_menu), '1',  '#', '', false, true, 'F', true, true, 'info:development:query',        '#', 'admin', now(), '', null, ''),
25
+    ('发展定位新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:development:add',          '#', 'admin', now(), '', null, ''),
26
+    ('发展定位修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:development:edit',         '#', 'admin', now(), '', null, ''),
27
+    ('发展定位删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:development:remove',       '#', 'admin', now(), '', null, ''),
28
+    ('发展定位导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:development:export',       '#', 'admin', now(), '', null, '');
24 29
 
25 30
 -- 菜单 SQL
26 31
 with temp_menu as (
@@ -70,3 +75,7 @@ comment on column equipment_info.park_id is '园区id';
70 75
 ALTER TABLE sys_dict_data
71 76
     add COLUMN if not exists park_id int;
72 77
 comment on column sys_dict_data.park_id is '园区id';
78
+
79
+ALTER TABLE model_info
80
+    add COLUMN if not exists trans jsonb;
81
+comment on column model_info.trans is '园区id';

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

@@ -10,10 +10,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
10 10
         <result property="originalPath"    column="original_path"    />
11 11
         <result property="modelIcon"    column="model_icon"    />
12 12
         <result property="planId"    column="plan_id"    />
13
+        <result property="trans" column="trans" />
13 14
     </resultMap>
14 15
 
15 16
     <sql id="selectModelInfoVo">
16
-        select model_id, model_name, original_path, model_icon, plan_id from model_info
17
+        select model_id, model_name, original_path, model_icon, plan_id, trans from model_info
17 18
     </sql>
18 19
 
19 20
     <select id="selectModelInfoList" parameterType="ModelInfo" resultMap="ModelInfoResult">
@@ -38,12 +39,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
38 39
             <if test="originalPath != null and originalPath != ''">original_path,</if>
39 40
             <if test="modelIcon != null and modelIcon != ''">model_icon,</if>
40 41
             <if test="planId != null">plan_id,</if>
42
+            <if test="trans != null">trans,</if>
41 43
          </trim>
42 44
         <trim prefix="values (" suffix=")" suffixOverrides=",">
43 45
             <if test="modelName != null and modelName != ''">#{modelName},</if>
44 46
             <if test="originalPath != null and originalPath != ''">#{originalPath},</if>
45 47
             <if test="modelIcon != null and modelIcon != ''">#{modelIcon},</if>
46 48
             <if test="planId != null">#{planId},</if>
49
+            <if test="trans != null">#{trans,jdbcType=OTHER,typeHandler=com.lqkj.framework.sql.JsonbTypeHandler},</if>
47 50
          </trim>
48 51
     </insert>
49 52
 
@@ -54,6 +57,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
54 57
             original_path = #{originalPath},
55 58
             model_icon = #{modelIcon},
56 59
             plan_id = #{planId},
60
+            trans = #{trans,jdbcType=OTHER,typeHandler=com.lqkj.framework.sql.JsonbTypeHandler},
57 61
         </trim>
58 62
         where model_id = #{modelId}
59 63
     </update>

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

@@ -128,7 +128,7 @@
128 128
 		    audio = #{audio},
129 129
 		    industry_type = #{industryType},
130 130
 		    floor = #{floor},
131
-		    house_type_id = #{houseTypeId}
131
+		    house_type_id = #{houseTypeId},
132 132
 		    park_id = #{parkId}
133 133
 		</trim>
134 134
 		where organization_id = #{organizationId}