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

增加发展定位和园区表

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

+ 112 - 0
src/main/java/com/lqkj/info/controller/DevelopmentsController.java

@@ -0,0 +1,112 @@
1
+package com.lqkj.info.controller;
2
+
3
+import java.util.List;
4
+import org.springframework.security.access.prepost.PreAuthorize;
5
+import org.springframework.beans.factory.annotation.Autowired;
6
+import org.springframework.web.bind.annotation.GetMapping;
7
+import org.springframework.web.bind.annotation.PostMapping;
8
+import org.springframework.web.bind.annotation.PutMapping;
9
+import org.springframework.web.bind.annotation.DeleteMapping;
10
+import org.springframework.web.bind.annotation.PathVariable;
11
+import org.springframework.web.bind.annotation.RequestBody;
12
+import org.springframework.web.bind.annotation.RequestMapping;
13
+import org.springframework.web.bind.annotation.RestController;
14
+import com.lqkj.common.annotation.Log;
15
+import com.lqkj.common.core.controller.BaseController;
16
+import com.lqkj.common.core.model.ResultUtil;
17
+import com.lqkj.common.enums.BusinessType;
18
+import io.swagger.annotations.Api;
19
+import io.swagger.annotations.ApiOperation;
20
+import com.lqkj.info.entity.Developments;
21
+import com.lqkj.info.service.DevelopmentsService;
22
+import com.lqkj.common.utils.poi.ExcelUtil;
23
+import com.github.pagehelper.PageInfo;
24
+
25
+/**
26
+ * 发展定位:developmentsController
27
+ * 
28
+ * @author lqkj
29
+ * @date 2024-12-13
30
+ */
31
+@Api(tags = {"发展定位:developments"})
32
+@RestController
33
+@RequestMapping("/info/development")
34
+public class DevelopmentsController extends BaseController
35
+{
36
+    @Autowired
37
+    private DevelopmentsService developmentsService;
38
+
39
+    /**
40
+     * 查询发展定位:developments列表
41
+     */
42
+    @ApiOperation("查询发展定位:developments列表")
43
+    @PreAuthorize("@ss.hasPermi('info:development:list')")
44
+    @GetMapping("/list")
45
+    public ResultUtil list(Developments developments)
46
+    {
47
+        startPage( developments);
48
+        PageInfo<Developments> pageInfo = new PageInfo<>(developmentsService.selectDevelopmentsList(developments));
49
+        return ResultUtil.success(pageInfo);
50
+    }
51
+
52
+    /**
53
+     * 导出发展定位:developments列表
54
+     */
55
+    @ApiOperation("导出发展定位:developments列表")
56
+    @PreAuthorize("@ss.hasPermi('info:development:export')")
57
+    @Log(title = "发展定位:developments", businessType = BusinessType.EXPORT)
58
+    @GetMapping("/export")
59
+    public ResultUtil export(Developments developments)
60
+    {
61
+        List<Developments> list = developmentsService.selectDevelopmentsList(developments);
62
+        ExcelUtil<Developments> util = new ExcelUtil<Developments>(Developments.class);
63
+        return util.exportExcel(list, "发展定位:developments数据");
64
+    }
65
+
66
+    /**
67
+     * 获取发展定位:developments详细信息
68
+     */
69
+    @ApiOperation("获取发展定位:developments详细信息")
70
+    @PreAuthorize("@ss.hasPermi('info:development:query')")
71
+    @GetMapping(value = "/{id}")
72
+    public ResultUtil getInfo(@PathVariable("id") Integer id)
73
+    {
74
+        return ResultUtil.success(developmentsService.selectDevelopmentsById(id));
75
+    }
76
+
77
+    /**
78
+     * 新增发展定位:developments
79
+     */
80
+    @ApiOperation("新增发展定位:developments")
81
+    @PreAuthorize("@ss.hasPermi('info:development:add')")
82
+    @Log(title = "发展定位:developments", businessType = BusinessType.INSERT)
83
+    @PostMapping
84
+    public ResultUtil add(@RequestBody Developments developments)
85
+    {
86
+        return resultByRows(developmentsService.insertDevelopments(developments));
87
+    }
88
+
89
+    /**
90
+     * 修改发展定位:developments
91
+     */
92
+    @ApiOperation("修改发展定位:developments")
93
+    @PreAuthorize("@ss.hasPermi('info:development:edit')")
94
+    @Log(title = "发展定位:developments", businessType = BusinessType.UPDATE)
95
+    @PutMapping
96
+    public ResultUtil edit(@RequestBody Developments developments)
97
+    {
98
+        return resultByRows(developmentsService.updateDevelopments(developments));
99
+    }
100
+
101
+    /**
102
+     * 删除发展定位:developments
103
+     */
104
+    @ApiOperation("删除发展定位:developments")
105
+    @PreAuthorize("@ss.hasPermi('info:development:remove')")
106
+    @Log(title = "发展定位:developments", businessType = BusinessType.DELETE)
107
+	@DeleteMapping("/{ids}")
108
+    public ResultUtil remove(@PathVariable Integer[] ids)
109
+    {
110
+        return resultByRows(developmentsService.deleteDevelopmentsByIds(ids));
111
+    }
112
+}

+ 112 - 0
src/main/java/com/lqkj/info/controller/ParkInfoController.java

@@ -0,0 +1,112 @@
1
+package com.lqkj.info.controller;
2
+
3
+import java.util.List;
4
+import org.springframework.security.access.prepost.PreAuthorize;
5
+import org.springframework.beans.factory.annotation.Autowired;
6
+import org.springframework.web.bind.annotation.GetMapping;
7
+import org.springframework.web.bind.annotation.PostMapping;
8
+import org.springframework.web.bind.annotation.PutMapping;
9
+import org.springframework.web.bind.annotation.DeleteMapping;
10
+import org.springframework.web.bind.annotation.PathVariable;
11
+import org.springframework.web.bind.annotation.RequestBody;
12
+import org.springframework.web.bind.annotation.RequestMapping;
13
+import org.springframework.web.bind.annotation.RestController;
14
+import com.lqkj.common.annotation.Log;
15
+import com.lqkj.common.core.controller.BaseController;
16
+import com.lqkj.common.core.model.ResultUtil;
17
+import com.lqkj.common.enums.BusinessType;
18
+import io.swagger.annotations.Api;
19
+import io.swagger.annotations.ApiOperation;
20
+import com.lqkj.info.entity.ParkInfo;
21
+import com.lqkj.info.service.ParkInfoService;
22
+import com.lqkj.common.utils.poi.ExcelUtil;
23
+import com.github.pagehelper.PageInfo;
24
+
25
+/**
26
+ * 园区对象Controller
27
+ * 
28
+ * @author lqkj
29
+ * @date 2024-12-16
30
+ */
31
+@Api(tags = {"园区对象"})
32
+@RestController
33
+@RequestMapping("/info/parkInfo")
34
+public class ParkInfoController extends BaseController
35
+{
36
+    @Autowired
37
+    private ParkInfoService parkInfoService;
38
+
39
+    /**
40
+     * 查询园区对象列表
41
+     */
42
+    @ApiOperation("查询园区对象列表")
43
+    @PreAuthorize("@ss.hasPermi('info:parkInfo:list')")
44
+    @GetMapping("/list")
45
+    public ResultUtil list(ParkInfo parkInfo)
46
+    {
47
+        startPage( parkInfo);
48
+        PageInfo<ParkInfo> pageInfo = new PageInfo<>(parkInfoService.selectParkInfoList(parkInfo));
49
+        return ResultUtil.success(pageInfo);
50
+    }
51
+
52
+    /**
53
+     * 导出园区对象列表
54
+     */
55
+    @ApiOperation("导出园区对象列表")
56
+    @PreAuthorize("@ss.hasPermi('info:parkInfo:export')")
57
+    @Log(title = "园区对象", businessType = BusinessType.EXPORT)
58
+    @GetMapping("/export")
59
+    public ResultUtil export(ParkInfo parkInfo)
60
+    {
61
+        List<ParkInfo> list = parkInfoService.selectParkInfoList(parkInfo);
62
+        ExcelUtil<ParkInfo> util = new ExcelUtil<ParkInfo>(ParkInfo.class);
63
+        return util.exportExcel(list, "园区对象数据");
64
+    }
65
+
66
+    /**
67
+     * 获取园区对象详细信息
68
+     */
69
+    @ApiOperation("获取园区对象详细信息")
70
+    @PreAuthorize("@ss.hasPermi('info:parkInfo:query')")
71
+    @GetMapping(value = "/{parkId}")
72
+    public ResultUtil getInfo(@PathVariable("parkId") Integer parkId)
73
+    {
74
+        return ResultUtil.success(parkInfoService.selectParkInfoByParkId(parkId));
75
+    }
76
+
77
+    /**
78
+     * 新增园区对象
79
+     */
80
+    @ApiOperation("新增园区对象")
81
+    @PreAuthorize("@ss.hasPermi('info:parkInfo:add')")
82
+    @Log(title = "园区对象", businessType = BusinessType.INSERT)
83
+    @PostMapping
84
+    public ResultUtil add(@RequestBody ParkInfo parkInfo)
85
+    {
86
+        return resultByRows(parkInfoService.insertParkInfo(parkInfo));
87
+    }
88
+
89
+    /**
90
+     * 修改园区对象
91
+     */
92
+    @ApiOperation("修改园区对象")
93
+    @PreAuthorize("@ss.hasPermi('info:parkInfo:edit')")
94
+    @Log(title = "园区对象", businessType = BusinessType.UPDATE)
95
+    @PutMapping
96
+    public ResultUtil edit(@RequestBody ParkInfo parkInfo)
97
+    {
98
+        return resultByRows(parkInfoService.updateParkInfo(parkInfo));
99
+    }
100
+
101
+    /**
102
+     * 删除园区对象
103
+     */
104
+    @ApiOperation("删除园区对象")
105
+    @PreAuthorize("@ss.hasPermi('info:parkInfo:remove')")
106
+    @Log(title = "园区对象", businessType = BusinessType.DELETE)
107
+	@DeleteMapping("/{parkIds}")
108
+    public ResultUtil remove(@PathVariable Integer[] parkIds)
109
+    {
110
+        return resultByRows(parkInfoService.deleteParkInfoByParkIds(parkIds));
111
+    }
112
+}

+ 108 - 0
src/main/java/com/lqkj/info/entity/Developments.java

@@ -0,0 +1,108 @@
1
+package com.lqkj.info.entity;
2
+
3
+import org.apache.commons.lang3.builder.ToStringBuilder;
4
+import org.apache.commons.lang3.builder.ToStringStyle;
5
+import com.lqkj.common.annotation.Excel;
6
+import com.lqkj.common.core.model.BaseEntity;
7
+import org.springframework.data.annotation.Transient;
8
+
9
+/**
10
+ * 发展定位:developments对象 developments
11
+ * 
12
+ * @author lqkj
13
+ * @date 2024-12-13
14
+ */
15
+public class Developments extends BaseEntity
16
+{
17
+    private static final long serialVersionUID = 1L;
18
+
19
+    /** id */
20
+    private Integer id;
21
+
22
+    /** 内容 */
23
+    @Excel(name = "内容")
24
+    private String content;
25
+
26
+    /** 名称 */
27
+    @Excel(name = "名称")
28
+    private String developmentName;
29
+
30
+    /** 文件路径 */
31
+    @Excel(name = "文件路径")
32
+    private String url;
33
+
34
+    /** 文件名称 */
35
+    @Excel(name = "文件名称")
36
+    private String fileName;
37
+
38
+    @Transient
39
+    private String orderBy;
40
+
41
+    public void setId(Integer id) 
42
+    {
43
+        this.id = id;
44
+    }
45
+
46
+    public Integer getId() 
47
+    {
48
+        return id;
49
+    }
50
+    public void setContent(String content) 
51
+    {
52
+        this.content = content;
53
+    }
54
+
55
+    public String getContent() 
56
+    {
57
+        return content;
58
+    }
59
+    public void setDevelopmentName(String developmentName) 
60
+    {
61
+        this.developmentName = developmentName;
62
+    }
63
+
64
+    public String getDevelopmentName() 
65
+    {
66
+        return developmentName;
67
+    }
68
+    public void setUrl(String url) 
69
+    {
70
+        this.url = url;
71
+    }
72
+
73
+    public String getUrl() 
74
+    {
75
+        return url;
76
+    }
77
+    public void setFileName(String fileName) 
78
+    {
79
+        this.fileName = fileName;
80
+    }
81
+
82
+    public String getFileName() 
83
+    {
84
+        return fileName;
85
+    }
86
+
87
+
88
+    public String getOrderBy() {
89
+        return orderBy;
90
+    }
91
+
92
+    public void setOrderBy(String orderBy) {
93
+        this.orderBy = orderBy;
94
+    }
95
+
96
+    @Override
97
+    public String toString() {
98
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
99
+            .append("id", getId())
100
+            .append("content", getContent())
101
+            .append("developmentName", getDevelopmentName())
102
+            .append("url", getUrl())
103
+            .append("fileName", getFileName())
104
+            .append("createTime", getCreateTime())
105
+            .append("orderBy", getOrderBy())
106
+            .toString();
107
+    }
108
+}

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

@@ -62,6 +62,9 @@ public class EquipmentInfo extends BaseEntity
62 62
     /** 品牌 */
63 63
     private Integer brand;
64 64
 
65
+    /** 园区id */
66
+    private Integer parkId;
67
+
65 68
     public void setEquipmentId(Integer equipmentId) 
66 69
     {
67 70
         this.equipmentId = equipmentId;
@@ -177,6 +180,14 @@ public class EquipmentInfo extends BaseEntity
177 180
         this.brand = brand;
178 181
     }
179 182
 
183
+    public Integer getParkId() {
184
+        return parkId;
185
+    }
186
+
187
+    public void setParkId(Integer parkId) {
188
+        this.parkId = parkId;
189
+    }
190
+
180 191
     @Override
181 192
     public String toString() {
182 193
         return "EquipmentInfo{" +
@@ -193,6 +204,7 @@ public class EquipmentInfo extends BaseEntity
193 204
                 ", deviceStatus=" + deviceStatus +
194 205
                 ", equipCode='" + equipCode + '\'' +
195 206
                 ", brand=" + brand +
207
+                ", parkId=" + parkId +
196 208
                 '}';
197 209
     }
198 210
 }

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

@@ -39,6 +39,9 @@ public class ForewarningInfo extends BaseEntity
39 39
     @Excel(name = "是否解决")
40 40
     private Boolean isResolve;
41 41
 
42
+    /** 园区id */
43
+    private Integer parkId;
44
+
42 45
     /** 解决时间 */
43 46
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" ,timezone="GMT+8")
44 47
     @Excel(name = "解决时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
@@ -108,6 +111,14 @@ public class ForewarningInfo extends BaseEntity
108 111
         return resolveTime;
109 112
     }
110 113
 
114
+    public Integer getParkId() {
115
+        return parkId;
116
+    }
117
+
118
+    public void setParkId(Integer parkId) {
119
+        this.parkId = parkId;
120
+    }
121
+
111 122
     @Override
112 123
     public String toString() {
113 124
         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -119,6 +130,7 @@ public class ForewarningInfo extends BaseEntity
119 130
             .append("createTime", getCreateTime())
120 131
             .append("isResolve", getIsResolve())
121 132
             .append("resolveTime", getResolveTime())
133
+            .append("parkId", getParkId())
122 134
             .toString();
123 135
     }
124 136
 }

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

@@ -88,6 +88,9 @@ public class OrganizationInfo extends BaseEntity
88 88
     /** 楼层 */
89 89
     private Integer floor;
90 90
 
91
+    /** 园区id */
92
+    private Integer parkId;
93
+
91 94
     public String getAudio() {
92 95
         return audio;
93 96
     }
@@ -274,6 +277,14 @@ public class OrganizationInfo extends BaseEntity
274 277
         this.houseTypeId = houseTypeId;
275 278
     }
276 279
 
280
+    public Integer getParkId() {
281
+        return parkId;
282
+    }
283
+
284
+    public void setParkId(Integer parkId) {
285
+        this.parkId = parkId;
286
+    }
287
+
277 288
     @Override
278 289
     public String toString() {
279 290
         return "OrganizationInfo{" +
@@ -298,6 +309,7 @@ public class OrganizationInfo extends BaseEntity
298 309
                 ", employeNum=" + employeNum +
299 310
                 ", audio='" + audio + '\'' +
300 311
                 ", floor=" + floor +
312
+                ", parkId=" + parkId +
301 313
                 '}';
302 314
     }
303 315
 }

+ 80 - 0
src/main/java/com/lqkj/info/entity/ParkInfo.java

@@ -0,0 +1,80 @@
1
+package com.lqkj.info.entity;
2
+
3
+
4
+import org.apache.commons.lang3.builder.ToStringBuilder;
5
+import org.apache.commons.lang3.builder.ToStringStyle;
6
+import com.lqkj.common.annotation.Excel;
7
+import com.lqkj.common.core.model.BaseEntity;
8
+
9
+/**
10
+ * 园区对象对象 park_info
11
+ * 
12
+ * @author lqkj
13
+ * @date 2024-12-16
14
+ */
15
+public class ParkInfo extends BaseEntity
16
+{
17
+    private static final long serialVersionUID = 1L;
18
+
19
+    /** 园区id */
20
+    private Integer parkId;
21
+
22
+    /** 园区名称 */
23
+    @Excel(name = "园区名称")
24
+    private String parkName;
25
+
26
+    /** 坐标 */
27
+    @Excel(name = "坐标")
28
+    private Object location;
29
+
30
+    /** 备注 */
31
+    @Excel(name = "备注")
32
+    private String memo;
33
+
34
+    public void setParkId(Integer parkId) 
35
+    {
36
+        this.parkId = parkId;
37
+    }
38
+
39
+    public Integer getParkId() 
40
+    {
41
+        return parkId;
42
+    }
43
+    public void setParkName(String parkName) 
44
+    {
45
+        this.parkName = parkName;
46
+    }
47
+
48
+    public String getParkName() 
49
+    {
50
+        return parkName;
51
+    }
52
+    public void setLocation(Object location)
53
+    {
54
+        this.location = location;
55
+    }
56
+
57
+    public Object getLocation()
58
+    {
59
+        return location;
60
+    }
61
+    public void setMemo(String memo) 
62
+    {
63
+        this.memo = memo;
64
+    }
65
+
66
+    public String getMemo() 
67
+    {
68
+        return memo;
69
+    }
70
+
71
+    @Override
72
+    public String toString() {
73
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
74
+            .append("parkId", getParkId())
75
+            .append("parkName", getParkName())
76
+            .append("location", getLocation())
77
+            .append("memo", getMemo())
78
+            .toString();
79
+    }
80
+}

+ 63 - 0
src/main/java/com/lqkj/info/mapper/DevelopmentsMapper.java

@@ -0,0 +1,63 @@
1
+package com.lqkj.info.mapper;
2
+
3
+import java.util.List;
4
+import org.apache.ibatis.annotations.Mapper;
5
+import com.lqkj.info.entity.Developments;
6
+
7
+/**
8
+ * 发展定位:developmentsMapper接口
9
+ * 
10
+ * @author lqkj
11
+ * @date 2024-12-13
12
+ */
13
+@Mapper
14
+public interface DevelopmentsMapper 
15
+{
16
+    /**
17
+     * 查询发展定位:developments
18
+     * 
19
+     * @param id 发展定位:developments主键
20
+     * @return 发展定位:developments
21
+     */
22
+    public Developments selectDevelopmentsById(Integer id);
23
+
24
+    /**
25
+     * 查询发展定位:developments列表
26
+     * 
27
+     * @param developments 发展定位:developments
28
+     * @return 发展定位:developments集合
29
+     */
30
+    public List<Developments> selectDevelopmentsList(Developments developments);
31
+
32
+    /**
33
+     * 新增发展定位:developments
34
+     * 
35
+     * @param developments 发展定位:developments
36
+     * @return 结果
37
+     */
38
+    public int insertDevelopments(Developments developments);
39
+
40
+    /**
41
+     * 修改发展定位:developments
42
+     * 
43
+     * @param developments 发展定位:developments
44
+     * @return 结果
45
+     */
46
+    public int updateDevelopments(Developments developments);
47
+
48
+    /**
49
+     * 删除发展定位:developments
50
+     * 
51
+     * @param id 发展定位:developments主键
52
+     * @return 结果
53
+     */
54
+    public int deleteDevelopmentsById(Integer id);
55
+
56
+    /**
57
+     * 批量删除发展定位:developments
58
+     * 
59
+     * @param ids 需要删除的数据主键集合
60
+     * @return 结果
61
+     */
62
+    public int deleteDevelopmentsByIds(Integer[] ids);
63
+}

+ 63 - 0
src/main/java/com/lqkj/info/mapper/ParkInfoMapper.java

@@ -0,0 +1,63 @@
1
+package com.lqkj.info.mapper;
2
+
3
+import java.util.List;
4
+import org.apache.ibatis.annotations.Mapper;
5
+import com.lqkj.info.entity.ParkInfo;
6
+
7
+/**
8
+ * 园区对象Mapper接口
9
+ * 
10
+ * @author lqkj
11
+ * @date 2024-12-16
12
+ */
13
+@Mapper
14
+public interface ParkInfoMapper 
15
+{
16
+    /**
17
+     * 查询园区对象
18
+     * 
19
+     * @param parkId 园区对象主键
20
+     * @return 园区对象
21
+     */
22
+    public ParkInfo selectParkInfoByParkId(Integer parkId);
23
+
24
+    /**
25
+     * 查询园区对象列表
26
+     * 
27
+     * @param parkInfo 园区对象
28
+     * @return 园区对象集合
29
+     */
30
+    public List<ParkInfo> selectParkInfoList(ParkInfo parkInfo);
31
+
32
+    /**
33
+     * 新增园区对象
34
+     * 
35
+     * @param parkInfo 园区对象
36
+     * @return 结果
37
+     */
38
+    public int insertParkInfo(ParkInfo parkInfo);
39
+
40
+    /**
41
+     * 修改园区对象
42
+     * 
43
+     * @param parkInfo 园区对象
44
+     * @return 结果
45
+     */
46
+    public int updateParkInfo(ParkInfo parkInfo);
47
+
48
+    /**
49
+     * 删除园区对象
50
+     * 
51
+     * @param parkId 园区对象主键
52
+     * @return 结果
53
+     */
54
+    public int deleteParkInfoByParkId(Integer parkId);
55
+
56
+    /**
57
+     * 批量删除园区对象
58
+     * 
59
+     * @param parkIds 需要删除的数据主键集合
60
+     * @return 结果
61
+     */
62
+    public int deleteParkInfoByParkIds(Integer[] parkIds);
63
+}

+ 93 - 0
src/main/java/com/lqkj/info/service/DevelopmentsService.java

@@ -0,0 +1,93 @@
1
+package com.lqkj.info.service;
2
+
3
+import java.util.List;
4
+import java.time.LocalDateTime;
5
+import org.springframework.beans.factory.annotation.Autowired;
6
+import org.springframework.stereotype.Service;
7
+import com.lqkj.info.mapper.DevelopmentsMapper;
8
+import com.lqkj.info.entity.Developments;
9
+import com.lqkj.common.utils.uuid.IdUtils;
10
+/**
11
+ * 发展定位:developmentsService业务层处理
12
+ * 
13
+ * @author lqkj
14
+ * @date 2024-12-13
15
+ */
16
+@Service
17
+public class DevelopmentsService
18
+{
19
+    @Autowired
20
+    private DevelopmentsMapper developmentsMapper;
21
+
22
+    /**
23
+     * 查询发展定位:developments
24
+     * 
25
+     * @param id 发展定位:developments主键
26
+     * @return 发展定位:developments
27
+     */
28
+    
29
+    public Developments selectDevelopmentsById(Integer id)
30
+    {
31
+        return developmentsMapper.selectDevelopmentsById(id);
32
+    }
33
+
34
+    /**
35
+     * 查询发展定位:developments列表
36
+     * 
37
+     * @param developments 发展定位:developments
38
+     * @return 发展定位:developments
39
+     */
40
+    public List<Developments> selectDevelopmentsList(Developments developments)
41
+    {
42
+        return developmentsMapper.selectDevelopmentsList(developments);
43
+    }
44
+
45
+    /**
46
+     * 新增发展定位:developments
47
+     * 
48
+     * @param developments 发展定位:developments
49
+     * @return 结果
50
+     */
51
+    
52
+    public int insertDevelopments(Developments developments)
53
+    {
54
+        developments.setCreateTime(LocalDateTime.now());
55
+        return developmentsMapper.insertDevelopments(developments);
56
+    }
57
+
58
+    /**
59
+     * 修改发展定位:developments
60
+     * 
61
+     * @param developments 发展定位:developments
62
+     * @return 结果
63
+     */
64
+    
65
+    public int updateDevelopments(Developments developments)
66
+    {
67
+        return developmentsMapper.updateDevelopments(developments);
68
+    }
69
+
70
+    /**
71
+     * 批量删除发展定位:developments
72
+     * 
73
+     * @param ids 需要删除的发展定位:developments主键
74
+     * @return 结果
75
+     */
76
+    
77
+    public int deleteDevelopmentsByIds(Integer[] ids)
78
+    {
79
+        return developmentsMapper.deleteDevelopmentsByIds(ids);
80
+    }
81
+
82
+    /**
83
+     * 删除发展定位:developments信息
84
+     * 
85
+     * @param id 发展定位:developments主键
86
+     * @return 结果
87
+     */
88
+    
89
+    public int deleteDevelopmentsById(Integer id)
90
+    {
91
+        return developmentsMapper.deleteDevelopmentsById(id);
92
+    }
93
+}

+ 91 - 0
src/main/java/com/lqkj/info/service/ParkInfoService.java

@@ -0,0 +1,91 @@
1
+package com.lqkj.info.service;
2
+
3
+import java.util.List;
4
+import org.springframework.beans.factory.annotation.Autowired;
5
+import org.springframework.stereotype.Service;
6
+import com.lqkj.info.mapper.ParkInfoMapper;
7
+import com.lqkj.info.entity.ParkInfo;
8
+import com.lqkj.common.utils.uuid.IdUtils;
9
+/**
10
+ * 园区对象Service业务层处理
11
+ * 
12
+ * @author lqkj
13
+ * @date 2024-12-16
14
+ */
15
+@Service
16
+public class ParkInfoService
17
+{
18
+    @Autowired
19
+    private ParkInfoMapper parkInfoMapper;
20
+
21
+    /**
22
+     * 查询园区对象
23
+     * 
24
+     * @param parkId 园区对象主键
25
+     * @return 园区对象
26
+     */
27
+    
28
+    public ParkInfo selectParkInfoByParkId(Integer parkId)
29
+    {
30
+        return parkInfoMapper.selectParkInfoByParkId(parkId);
31
+    }
32
+
33
+    /**
34
+     * 查询园区对象列表
35
+     * 
36
+     * @param parkInfo 园区对象
37
+     * @return 园区对象
38
+     */
39
+    public List<ParkInfo> selectParkInfoList(ParkInfo parkInfo)
40
+    {
41
+        return parkInfoMapper.selectParkInfoList(parkInfo);
42
+    }
43
+
44
+    /**
45
+     * 新增园区对象
46
+     * 
47
+     * @param parkInfo 园区对象
48
+     * @return 结果
49
+     */
50
+    
51
+    public int insertParkInfo(ParkInfo parkInfo)
52
+    {
53
+        return parkInfoMapper.insertParkInfo(parkInfo);
54
+    }
55
+
56
+    /**
57
+     * 修改园区对象
58
+     * 
59
+     * @param parkInfo 园区对象
60
+     * @return 结果
61
+     */
62
+    
63
+    public int updateParkInfo(ParkInfo parkInfo)
64
+    {
65
+        return parkInfoMapper.updateParkInfo(parkInfo);
66
+    }
67
+
68
+    /**
69
+     * 批量删除园区对象
70
+     * 
71
+     * @param parkIds 需要删除的园区对象主键
72
+     * @return 结果
73
+     */
74
+    
75
+    public int deleteParkInfoByParkIds(Integer[] parkIds)
76
+    {
77
+        return parkInfoMapper.deleteParkInfoByParkIds(parkIds);
78
+    }
79
+
80
+    /**
81
+     * 删除园区对象信息
82
+     * 
83
+     * @param parkId 园区对象主键
84
+     * @return 结果
85
+     */
86
+    
87
+    public int deleteParkInfoByParkId(Integer parkId)
88
+    {
89
+        return parkInfoMapper.deleteParkInfoByParkId(parkId);
90
+    }
91
+}

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

@@ -55,6 +55,9 @@ public class SysDictData extends BaseEntity
55 55
     /** 菜单图标 */
56 56
     private String icon;
57 57
 
58
+    /** 园区id */
59
+    private Integer parkId;
60
+
58 61
     public Integer getDictCode()
59 62
     {
60 63
         return dictCode;
@@ -155,6 +158,14 @@ public class SysDictData extends BaseEntity
155 158
         this.icon = icon;
156 159
     }
157 160
 
161
+    public Integer getParkId() {
162
+        return parkId;
163
+    }
164
+
165
+    public void setParkId(Integer parkId) {
166
+        this.parkId = parkId;
167
+    }
168
+
158 169
     @Override
159 170
     public String toString() {
160 171
         return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
@@ -173,6 +184,7 @@ public class SysDictData extends BaseEntity
173 184
                 .append("updateTime", getUpdateTime())
174 185
                 .append("remark", getRemark())
175 186
                 .append("icon", getIcon())
187
+                .append("parkId", getParkId())
176 188
                 .toString();
177 189
     }
178 190
 }

+ 72 - 0
src/main/resources/db/migration/V1_8__20241216.sql

@@ -0,0 +1,72 @@
1
+ALTER TABLE developments
2
+    add COLUMN if not exists development_name VARCHAR(255);
3
+comment on column developments.development_name is '名称';
4
+
5
+ALTER TABLE developments
6
+    add COLUMN if not exists url VARCHAR(255);
7
+comment on column developments.url is '文件路径';
8
+
9
+ALTER TABLE developments
10
+    add COLUMN if not exists file_name VARCHAR(255);
11
+comment on column developments.file_name is '文件名称';
12
+
13
+ALTER TABLE developments
14
+    add COLUMN if not exists create_time TIMESTAMP;
15
+comment on column developments.create_time is '创建时间';
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
+
24
+
25
+-- 菜单 SQL
26
+with temp_menu as (
27
+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)
28
+values('园区对象', '2200', '1', 'parkInfo', 'info/parkInfo/index', false, true, 'C', true, true, 'info:parkInfo:list', 'operation', 'admin', now(), '', null, '园区对象菜单') returning menu_id
29
+    )
30
+-- 按钮 SQL
31
+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)
32
+values('园区对象查询', (select * from temp_menu), '1',  '#', '', false, true, 'F', true, true, 'info:parkInfo:query',        '#', 'admin', now(), '', null, ''),
33
+    ('园区对象新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:parkInfo:add',          '#', 'admin', now(), '', null, ''),
34
+    ('园区对象修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:parkInfo:edit',         '#', 'admin', now(), '', null, ''),
35
+    ('园区对象删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:parkInfo:remove',       '#', 'admin', now(), '', null, ''),
36
+    ('园区对象导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:parkInfo:export',       '#', 'admin', now(), '', null, '');
37
+
38
+SELECT setval('sys_menu_menu_id_seq', (SELECT MAX(menu_id) FROM sys_menu));
39
+
40
+CREATE TABLE IF not EXISTS "public"."park_info" (
41
+                                                    "park_id" SERIAL NOT NULL,
42
+                                                    "park_name" varchar(255) COLLATE "pg_catalog"."default",
43
+    "location" json,
44
+    "memo" varchar(255) COLLATE "pg_catalog"."default",
45
+    CONSTRAINT "park_info_pkey" PRIMARY KEY ("park_id")
46
+    )
47
+;
48
+
49
+COMMENT ON COLUMN "public"."park_info"."park_id" IS '园区id';
50
+
51
+COMMENT ON COLUMN "public"."park_info"."park_name" IS '园区名称';
52
+
53
+COMMENT ON COLUMN "public"."park_info"."location" IS '坐标';
54
+
55
+COMMENT ON COLUMN "public"."park_info"."memo" IS '备注';
56
+
57
+ALTER TABLE organization_info
58
+    add COLUMN if not exists park_id int;
59
+comment on column organization_info.park_id is '园区id';
60
+
61
+
62
+ALTER TABLE forewarning_info
63
+    add COLUMN if not exists park_id int;
64
+comment on column forewarning_info.park_id is '园区id';
65
+
66
+ALTER TABLE equipment_info
67
+    add COLUMN if not exists park_id int;
68
+comment on column equipment_info.park_id is '园区id';
69
+
70
+ALTER TABLE sys_dict_data
71
+    add COLUMN if not exists park_id int;
72
+comment on column sys_dict_data.park_id is '园区id';

+ 81 - 0
src/main/resources/mapper/info/DevelopmentsMapper.xml

@@ -0,0 +1,81 @@
1
+<?xml version="1.0" encoding="UTF-8" ?>
2
+<!DOCTYPE mapper
3
+		PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
4
+		"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
5
+<mapper namespace="com.lqkj.info.mapper.DevelopmentsMapper">
6
+
7
+	<resultMap type="Developments" id="DevelopmentsResult">
8
+		<result property="id"    column="id"    />
9
+		<result property="content"    column="content"    />
10
+		<result property="developmentName"    column="development_name"    />
11
+		<result property="url"    column="url"    />
12
+		<result property="fileName"    column="file_name"    />
13
+		<result property="createTime"    column="create_time"    />
14
+	</resultMap>
15
+
16
+	<sql id="selectDevelopmentsVo">
17
+		select id, content, development_name, url, file_name, create_time from developments
18
+	</sql>
19
+
20
+	<select id="selectDevelopmentsList" parameterType="Developments" resultMap="DevelopmentsResult">
21
+		<include refid="selectDevelopmentsVo"/>
22
+		<where>
23
+			<if test="developmentName != null  and developmentName != ''"> and development_name like concat('%', #{developmentName}, '%')</if>
24
+			<if test="fileName != null  and fileName != ''"> and file_name like concat('%', #{fileName}, '%')</if>
25
+		</where>
26
+		<choose>
27
+			<when test="orderBy != null and orderBy != ''">
28
+				order by create_time desc
29
+			</when>
30
+			<otherwise>
31
+				order by create_time
32
+			</otherwise>
33
+		</choose>
34
+
35
+	</select>
36
+
37
+	<select id="selectDevelopmentsById" parameterType="Integer" resultMap="DevelopmentsResult">
38
+		<include refid="selectDevelopmentsVo"/>
39
+		where id = #{id}
40
+	</select>
41
+
42
+	<insert id="insertDevelopments" parameterType="Developments" useGeneratedKeys="true" keyProperty="id">
43
+		insert into developments
44
+		<trim prefix="(" suffix=")" suffixOverrides=",">
45
+			<if test="content != null and content != ''">content,</if>
46
+			<if test="developmentName != null and developmentName != ''">development_name,</if>
47
+			<if test="url != null and url != ''">url,</if>
48
+			<if test="fileName != null and fileName != ''">file_name,</if>
49
+			<if test="createTime != null">create_time,</if>
50
+		</trim>
51
+		<trim prefix="values (" suffix=")" suffixOverrides=",">
52
+			<if test="content != null and content != ''">#{content},</if>
53
+			<if test="developmentName != null and developmentName != ''">#{developmentName},</if>
54
+			<if test="url != null and url != ''">#{url},</if>
55
+			<if test="fileName != null and fileName != ''">#{fileName},</if>
56
+			now(),
57
+		</trim>
58
+	</insert>
59
+
60
+	<update id="updateDevelopments" parameterType="Developments">
61
+		update developments
62
+		<trim prefix="SET" suffixOverrides=",">
63
+			content = #{content},
64
+			development_name = #{developmentName},
65
+			url = #{url},
66
+			file_name = #{fileName},
67
+		</trim>
68
+		where id = #{id}
69
+	</update>
70
+
71
+	<delete id="deleteDevelopmentsById" parameterType="Integer">
72
+		delete from developments where id = #{id}
73
+	</delete>
74
+
75
+	<delete id="deleteDevelopmentsByIds" parameterType="String">
76
+		delete from developments where id in
77
+		<foreach item="id" collection="array" open="(" separator="," close=")">
78
+			#{id}
79
+		</foreach>
80
+	</delete>
81
+</mapper>

+ 6 - 1
src/main/resources/mapper/info/EquipmentInfoMapper.xml

@@ -18,10 +18,11 @@
18 18
 		<result property="equipCode"    column="equip_code"    />
19 19
 		<result property="deviceStatus"    column="device_status"    />
20 20
 		<result property="brand" column="brand"/>
21
+		<result property="parkId"	column="park_id"/>
21 22
 	</resultMap>
22 23
 
23 24
 	<sql id="selectEquipmentInfoVo">
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
25
+		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, park_id from equipment_info
25 26
 	</sql>
26 27
 
27 28
 	<select id="selectEquipmentInfoList" parameterType="EquipmentInfo" resultMap="EquipmentInfoResult">
@@ -33,6 +34,7 @@
33 34
 			<if test="areaId != null"> and area_id = #{areaId}</if>
34 35
 			<if test="roomId != null"> and room_id = #{roomId}</if>
35 36
 			<if test="status != null"> and status = #{status}</if>
37
+			<if test="parkId != null"> and park_id = #{parkId}</if>
36 38
 		</where>
37 39
 		order by equipment_id
38 40
 
@@ -58,6 +60,7 @@
58 60
 		    <if test="equipCode != null and equipCode != ''">equip_code,</if>
59 61
 		    <if test="deviceStatus != null">device_status,</if>
60 62
 		    <if test="brand != null">brand,</if>
63
+		    <if test="parkId != null">park_id,</if>
61 64
 		</trim>
62 65
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
63 66
 			<if test="typeId != null">#{typeId},</if>
@@ -72,6 +75,7 @@
72 75
 		    <if test="equipCode != null and equipCode != ''">#{equipCode},</if>
73 76
 		    <if test="deviceStatus != null">#{deviceStatus},</if>
74 77
 		    <if test="brand != null">#{brand},</if>
78
+		    <if test="parkId != null">#{parkId},</if>
75 79
 		</trim>
76 80
 	</insert>
77 81
 
@@ -90,6 +94,7 @@
90 94
 		    equip_code = #{equipCode},
91 95
 		    device_status = #{deviceStatus},
92 96
 		    brand = #{brand},
97
+		    park_id = #{parkId}
93 98
 		</trim>
94 99
 		where equipment_id = #{equipmentId}
95 100
 	</update>

+ 6 - 1
src/main/resources/mapper/info/ForewarningInfoMapper.xml

@@ -13,10 +13,11 @@
13 13
 		<result property="createTime"    column="create_time"    />
14 14
 		<result property="isResolve"    column="is_resolve"    />
15 15
 		<result property="resolveTime"    column="resolve_time"    />
16
+		<result property="parkId"	column="park_id"/>
16 17
 	</resultMap>
17 18
 
18 19
 	<sql id="selectForewarningInfoVo">
19
-		select forewarning_id, forewarning_name, content, equipment_id, equipment_name, create_time, is_resolve, resolve_time from forewarning_info
20
+		select forewarning_id, forewarning_name, content, equipment_id, equipment_name, create_time, is_resolve, resolve_time, park_id from forewarning_info
20 21
 	</sql>
21 22
 
22 23
 	<select id="selectForewarningInfoList" parameterType="ForewarningInfo" resultMap="ForewarningInfoResult">
@@ -26,6 +27,7 @@
26 27
 			<if test="equipmentId != null "> and equipment_id = #{equipmentId}</if>
27 28
 			<if test="isResolve != null "> and is_resolve like concat('%', #{isResolve}, '%')</if>
28 29
 			<if test="resolveTime != null "> and resolve_time like concat('%', #{resolveTime}, '%')</if>
30
+			 <if test="parkId != null"> and park_id = #{parkId}</if>
29 31
 		</where>
30 32
 		order by forewarning_id
31 33
 
@@ -46,6 +48,7 @@
46 48
 			<if test="createTime != null">create_time,</if>
47 49
 			<if test="isResolve != null">is_resolve,</if>
48 50
 			<if test="resolveTime != null">resolve_time,</if>
51
+		    <if test="parkId != null">park_id,</if>
49 52
 		</trim>
50 53
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
51 54
 			<if test="forewarningName != null and forewarningName != ''">#{forewarningName},</if>
@@ -55,6 +58,7 @@
55 58
 			now(),
56 59
 			<if test="isResolve != null">#{isResolve},</if>
57 60
 			<if test="resolveTime != null">#{resolveTime},</if>
61
+		    <if test="parkId != null">#{parkId},</if>
58 62
 		</trim>
59 63
 	</insert>
60 64
 
@@ -67,6 +71,7 @@
67 71
 			equipment_name = #{equipmentName},
68 72
 			is_resolve = #{isResolve},
69 73
 			resolve_time = #{resolveTime},
74
+		    park_id = #{parkId},
70 75
 		</trim>
71 76
 		where forewarning_id = #{forewarningId}
72 77
 	</update>

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

@@ -26,10 +26,11 @@
26 26
 		<result property="industryType" column="industry_type"/>
27 27
 		<result property="floor" column="floor"/>
28 28
 		<result property="houseTypeId" column="house_type_id"/>
29
+		<result property="parkId"	column="park_id"/>
29 30
 	</resultMap>
30 31
 
31 32
 	<sql id="selectOrganizationInfoVo">
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
33
+		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, park_id from organization_info
33 34
 	</sql>
34 35
 
35 36
 	<select id="selectOrganizationInfoList" parameterType="OrganizationInfo" resultMap="OrganizationInfoResult">
@@ -44,6 +45,7 @@
44 45
 			<if test="industryType != null "> and industry_type = #{industryType}</if>
45 46
 			<if test="floor != null "> and floor = #{floor}</if>
46 47
 			<if test="houseTypeId != null "> and house_type_id = #{houseTypeId}</if>
48
+			<if test="parkId != null"> and park_id = #{parkId}</if>
47 49
 		</where>
48 50
 		order by organization_id
49 51
 
@@ -77,6 +79,7 @@
77 79
 		    <if test="industryType != null">industry_type,</if>
78 80
 		    <if test="floor != null">floor,</if>
79 81
 		    <if test="houseTypeId != null">house_type_id,</if>
82
+		    <if test="parkId != null">park_id,</if>
80 83
 		</trim>
81 84
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
82 85
 			<if test="typeId != null">#{typeId},</if>
@@ -99,6 +102,7 @@
99 102
 		    <if test="industryType != null">#{industryType},</if>
100 103
 		    <if test="floor != null">#{floor},</if>
101 104
 		    <if test="houseTypeId != null">#{houseTypeId},</if>
105
+		    <if test="parkId != null">#{parkId},</if>
102 106
 		</trim>
103 107
 	</insert>
104 108
 
@@ -125,6 +129,7 @@
125 129
 		    industry_type = #{industryType},
126 130
 		    floor = #{floor},
127 131
 		    house_type_id = #{houseTypeId}
132
+		    park_id = #{parkId}
128 133
 		</trim>
129 134
 		where organization_id = #{organizationId}
130 135
 	</update>

+ 66 - 0
src/main/resources/mapper/info/ParkInfoMapper.xml

@@ -0,0 +1,66 @@
1
+<?xml version="1.0" encoding="UTF-8" ?>
2
+<!DOCTYPE mapper
3
+		PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
4
+		"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
5
+<mapper namespace="com.lqkj.info.mapper.ParkInfoMapper">
6
+
7
+	<resultMap type="ParkInfo" id="ParkInfoResult">
8
+		<result property="parkId"    column="park_id"    />
9
+		<result property="parkName"    column="park_name"    />
10
+		<result property="location"    column="location"    />
11
+		<result property="memo"    column="memo"    />
12
+	</resultMap>
13
+
14
+	<sql id="selectParkInfoVo">
15
+		select park_id, park_name, location, memo from park_info
16
+	</sql>
17
+
18
+	<select id="selectParkInfoList" parameterType="ParkInfo" resultMap="ParkInfoResult">
19
+		<include refid="selectParkInfoVo"/>
20
+		<where>
21
+			<if test="parkName != null  and parkName != ''"> and park_name like concat('%', #{parkName}, '%')</if>
22
+		</where>
23
+		order by park_id
24
+
25
+	</select>
26
+
27
+	<select id="selectParkInfoByParkId" parameterType="Integer" resultMap="ParkInfoResult">
28
+		<include refid="selectParkInfoVo"/>
29
+		where park_id = #{parkId}
30
+	</select>
31
+
32
+	<insert id="insertParkInfo" parameterType="ParkInfo" useGeneratedKeys="true" keyProperty="parkId">
33
+		insert into park_info
34
+		<trim prefix="(" suffix=")" suffixOverrides=",">
35
+			<if test="parkName != null and parkName != ''">park_name,</if>
36
+			<if test="location != null and location != ''">location,</if>
37
+			<if test="memo != null and memo != ''">memo,</if>
38
+		</trim>
39
+		<trim prefix="values (" suffix=")" suffixOverrides=",">
40
+			<if test="parkName != null and parkName != ''">#{parkName},</if>
41
+			<if test="location != null and location != ''">#{location, jdbcType=OTHER,typeHandler=com.lqkj.framework.sql.JsonbTypeHandler},</if>
42
+			<if test="memo != null and memo != ''">#{memo},</if>
43
+		</trim>
44
+	</insert>
45
+
46
+	<update id="updateParkInfo" parameterType="ParkInfo">
47
+		update park_info
48
+		<trim prefix="SET" suffixOverrides=",">
49
+			park_name = #{parkName},
50
+			location = #{location, jdbcType=OTHER,typeHandler=com.lqkj.framework.sql.JsonbTypeHandler},
51
+			memo = #{memo},
52
+		</trim>
53
+		where park_id = #{parkId}
54
+	</update>
55
+
56
+	<delete id="deleteParkInfoByParkId" parameterType="Integer">
57
+		delete from park_info where park_id = #{parkId}
58
+	</delete>
59
+
60
+	<delete id="deleteParkInfoByParkIds" parameterType="String">
61
+		delete from park_info where park_id in
62
+		<foreach item="parkId" collection="array" open="(" separator="," close=")">
63
+			#{parkId}
64
+		</foreach>
65
+	</delete>
66
+</mapper>

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

@@ -19,10 +19,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
19 19
 		<result property="updateBy"   column="update_by"   />
20 20
 		<result property="updateTime" column="update_time" />
21 21
 		<result property="icon"		  column="icon"        />
22
+		<result property="parkId"	column="park_id"/>
22 23
 	</resultMap>
23 24
 	
24 25
 	<sql id="selectDictDataVo">
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
26
+        select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark, icon, park_id
26 27
 		from sys_dict_data
27 28
     </sql>
28 29
 
@@ -38,6 +39,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
38 39
 			<if test="status != null">
39 40
 				AND status = #{status}
40 41
 			</if>
42
+			<if test="parkId != null">
43
+				AND park_id = #{parkId}
44
+			</if>
41 45
 		</where>
42 46
 		order by dict_sort asc
43 47
 	</select>
@@ -86,6 +90,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
86 90
  			<if test="remark != null">remark = #{remark},</if>
87 91
  			<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
88 92
  		    <if test="icon != null and icon != ''">icon = #{icon},</if>
93
+ 		    <if test="parkId != null">park_id = #{parkId},</if>
89 94
  			update_time = now()
90 95
  		</set>
91 96
  		where dict_code = #{dictCode}
@@ -108,6 +113,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
108 113
  			<if test="remark != null and remark != ''">remark,</if>
109 114
  			<if test="createBy != null and createBy != ''">create_by,</if>
110 115
  		    <if test="icon != null and icon != ''">icon,</if>
116
+ 		    <if test="parkId != null">park_id,</if>
111 117
  			create_time
112 118
  		)values(
113 119
  		    <if test="dictSort != null">#{dictSort},</if>
@@ -121,6 +127,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
121 127
  			<if test="remark != null and remark != ''">#{remark},</if>
122 128
  			<if test="createBy != null and createBy != ''">#{createBy},</if>
123 129
  		    <if test="icon != null and icon != ''">#{icon},</if>
130
+ 		    <if test="parkId != null">#{parkId},</if>
124 131
 		now()
125 132
  		)
126 133
 	</insert>