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

增加停车场及轮班人员

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

+ 112 - 0
src/main/java/com/lqkj/info/controller/ParkingLotController.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.ParkingLot;
21
+import com.lqkj.info.service.ParkingLotService;
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-23
30
+ */
31
+@Api(tags = {"停车场信息"})
32
+@RestController
33
+@RequestMapping("/info/parkingLot")
34
+public class ParkingLotController extends BaseController
35
+{
36
+    @Autowired
37
+    private ParkingLotService parkingLotService;
38
+
39
+    /**
40
+     * 查询停车场信息列表
41
+     */
42
+    @ApiOperation("查询停车场信息列表")
43
+    @PreAuthorize("@ss.hasPermi('info:parkingLot:list')")
44
+    @GetMapping("/list")
45
+    public ResultUtil list(ParkingLot parkingLot)
46
+    {
47
+        startPage( parkingLot);
48
+        PageInfo<ParkingLot> pageInfo = new PageInfo<>(parkingLotService.selectParkingLotList(parkingLot));
49
+        return ResultUtil.success(pageInfo);
50
+    }
51
+
52
+    /**
53
+     * 导出停车场信息列表
54
+     */
55
+    @ApiOperation("导出停车场信息列表")
56
+    @PreAuthorize("@ss.hasPermi('info:parkingLot:export')")
57
+    @Log(title = "停车场信息", businessType = BusinessType.EXPORT)
58
+    @GetMapping("/export")
59
+    public ResultUtil export(ParkingLot parkingLot)
60
+    {
61
+        List<ParkingLot> list = parkingLotService.selectParkingLotList(parkingLot);
62
+        ExcelUtil<ParkingLot> util = new ExcelUtil<ParkingLot>(ParkingLot.class);
63
+        return util.exportExcel(list, "停车场信息数据");
64
+    }
65
+
66
+    /**
67
+     * 获取停车场信息详细信息
68
+     */
69
+    @ApiOperation("获取停车场信息详细信息")
70
+    @PreAuthorize("@ss.hasPermi('info:parkingLot:query')")
71
+    @GetMapping(value = "/{parkingId}")
72
+    public ResultUtil getInfo(@PathVariable("parkingId") Integer parkingId)
73
+    {
74
+        return ResultUtil.success(parkingLotService.selectParkingLotByParkingId(parkingId));
75
+    }
76
+
77
+    /**
78
+     * 新增停车场信息
79
+     */
80
+    @ApiOperation("新增停车场信息")
81
+    @PreAuthorize("@ss.hasPermi('info:parkingLot:add')")
82
+    @Log(title = "停车场信息", businessType = BusinessType.INSERT)
83
+    @PostMapping
84
+    public ResultUtil add(@RequestBody ParkingLot parkingLot)
85
+    {
86
+        return resultByRows(parkingLotService.insertParkingLot(parkingLot));
87
+    }
88
+
89
+    /**
90
+     * 修改停车场信息
91
+     */
92
+    @ApiOperation("修改停车场信息")
93
+    @PreAuthorize("@ss.hasPermi('info:parkingLot:edit')")
94
+    @Log(title = "停车场信息", businessType = BusinessType.UPDATE)
95
+    @PutMapping
96
+    public ResultUtil edit(@RequestBody ParkingLot parkingLot)
97
+    {
98
+        return resultByRows(parkingLotService.updateParkingLot(parkingLot));
99
+    }
100
+
101
+    /**
102
+     * 删除停车场信息
103
+     */
104
+    @ApiOperation("删除停车场信息")
105
+    @PreAuthorize("@ss.hasPermi('info:parkingLot:remove')")
106
+    @Log(title = "停车场信息", businessType = BusinessType.DELETE)
107
+	@DeleteMapping("/{parkingIds}")
108
+    public ResultUtil remove(@PathVariable Integer[] parkingIds)
109
+    {
110
+        return resultByRows(parkingLotService.deleteParkingLotByParkingIds(parkingIds));
111
+    }
112
+}

+ 112 - 0
src/main/java/com/lqkj/info/controller/ShiftPersonnelController.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.ShiftPersonnel;
21
+import com.lqkj.info.service.ShiftPersonnelService;
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-23
30
+ */
31
+@Api(tags = {"轮班人员信息"})
32
+@RestController
33
+@RequestMapping("/info/shiftPersonnel")
34
+public class ShiftPersonnelController extends BaseController
35
+{
36
+    @Autowired
37
+    private ShiftPersonnelService shiftPersonnelService;
38
+
39
+    /**
40
+     * 查询轮班人员信息列表
41
+     */
42
+    @ApiOperation("查询轮班人员信息列表")
43
+    @PreAuthorize("@ss.hasPermi('info:shiftPersonnel:list')")
44
+    @GetMapping("/list")
45
+    public ResultUtil list(ShiftPersonnel shiftPersonnel)
46
+    {
47
+        startPage( shiftPersonnel);
48
+        PageInfo<ShiftPersonnel> pageInfo = new PageInfo<>(shiftPersonnelService.selectShiftPersonnelList(shiftPersonnel));
49
+        return ResultUtil.success(pageInfo);
50
+    }
51
+
52
+    /**
53
+     * 导出轮班人员信息列表
54
+     */
55
+    @ApiOperation("导出轮班人员信息列表")
56
+    @PreAuthorize("@ss.hasPermi('info:shiftPersonnel:export')")
57
+    @Log(title = "轮班人员信息", businessType = BusinessType.EXPORT)
58
+    @GetMapping("/export")
59
+    public ResultUtil export(ShiftPersonnel shiftPersonnel)
60
+    {
61
+        List<ShiftPersonnel> list = shiftPersonnelService.selectShiftPersonnelList(shiftPersonnel);
62
+        ExcelUtil<ShiftPersonnel> util = new ExcelUtil<ShiftPersonnel>(ShiftPersonnel.class);
63
+        return util.exportExcel(list, "轮班人员信息数据");
64
+    }
65
+
66
+    /**
67
+     * 获取轮班人员信息详细信息
68
+     */
69
+    @ApiOperation("获取轮班人员信息详细信息")
70
+    @PreAuthorize("@ss.hasPermi('info:shiftPersonnel:query')")
71
+    @GetMapping(value = "/{personnelId}")
72
+    public ResultUtil getInfo(@PathVariable("personnelId") Integer personnelId)
73
+    {
74
+        return ResultUtil.success(shiftPersonnelService.selectShiftPersonnelByPersonnelId(personnelId));
75
+    }
76
+
77
+    /**
78
+     * 新增轮班人员信息
79
+     */
80
+    @ApiOperation("新增轮班人员信息")
81
+    @PreAuthorize("@ss.hasPermi('info:shiftPersonnel:add')")
82
+    @Log(title = "轮班人员信息", businessType = BusinessType.INSERT)
83
+    @PostMapping
84
+    public ResultUtil add(@RequestBody ShiftPersonnel shiftPersonnel)
85
+    {
86
+        return resultByRows(shiftPersonnelService.insertShiftPersonnel(shiftPersonnel));
87
+    }
88
+
89
+    /**
90
+     * 修改轮班人员信息
91
+     */
92
+    @ApiOperation("修改轮班人员信息")
93
+    @PreAuthorize("@ss.hasPermi('info:shiftPersonnel:edit')")
94
+    @Log(title = "轮班人员信息", businessType = BusinessType.UPDATE)
95
+    @PutMapping
96
+    public ResultUtil edit(@RequestBody ShiftPersonnel shiftPersonnel)
97
+    {
98
+        return resultByRows(shiftPersonnelService.updateShiftPersonnel(shiftPersonnel));
99
+    }
100
+
101
+    /**
102
+     * 删除轮班人员信息
103
+     */
104
+    @ApiOperation("删除轮班人员信息")
105
+    @PreAuthorize("@ss.hasPermi('info:shiftPersonnel:remove')")
106
+    @Log(title = "轮班人员信息", businessType = BusinessType.DELETE)
107
+	@DeleteMapping("/{personnelIds}")
108
+    public ResultUtil remove(@PathVariable Integer[] personnelIds)
109
+    {
110
+        return resultByRows(shiftPersonnelService.deleteShiftPersonnelByPersonnelIds(personnelIds));
111
+    }
112
+}

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

@@ -48,6 +48,9 @@ public class ElevatorInfo extends BaseEntity
48 48
     /** 运行时间 */
49 49
     private String runTime;
50 50
 
51
+    /** 连接状态 */
52
+    private Integer connectStatus;
53
+
51 54
     public void setElevatorId(Integer elevatorId) 
52 55
     {
53 56
         this.elevatorId = elevatorId;
@@ -127,6 +130,14 @@ public class ElevatorInfo extends BaseEntity
127 130
         this.runTime = runTime;
128 131
     }
129 132
 
133
+    public Integer getConnectStatus() {
134
+        return connectStatus;
135
+    }
136
+
137
+    public void setConnectStatus(Integer connectStatus) {
138
+        this.connectStatus = connectStatus;
139
+    }
140
+
130 141
     @Override
131 142
     public String toString() {
132 143
         return "ElevatorInfo{" +
@@ -139,6 +150,7 @@ public class ElevatorInfo extends BaseEntity
139 150
                 ", type=" + type +
140 151
                 ", runFloor='" + runFloor + '\'' +
141 152
                 ", runTime='" + runTime + '\'' +
153
+                ", connectStatus=" + connectStatus +
142 154
                 '}';
143 155
     }
144 156
 }

+ 121 - 0
src/main/java/com/lqkj/info/entity/ParkingLot.java

@@ -0,0 +1,121 @@
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
+ * 停车场信息对象 parking_lot
11
+ * 
12
+ * @author lqkj
13
+ * @date 2024-12-23
14
+ */
15
+public class ParkingLot extends BaseEntity
16
+{
17
+    private static final long serialVersionUID = 1L;
18
+
19
+    /** 停车场id */
20
+    private Integer parkingId;
21
+
22
+    /** 停车场名称 */
23
+    @Excel(name = "停车场名称")
24
+    private String parkingName;
25
+
26
+    /** 坐标 */
27
+    @Excel(name = "坐标")
28
+    private String lngLat;
29
+
30
+    /** 空余车位 */
31
+    @Excel(name = "空余车位")
32
+    private Integer freeSpots;
33
+
34
+    /** 空余充电桩 */
35
+    @Excel(name = "空余充电桩")
36
+    private Integer freeChargers;
37
+
38
+    /** 备注 */
39
+    @Excel(name = "备注")
40
+    private String memo;
41
+
42
+    /** 值班人员 */
43
+    @Transient
44
+    private String personnelName;
45
+
46
+    public void setParkingId(Integer parkingId) 
47
+    {
48
+        this.parkingId = parkingId;
49
+    }
50
+
51
+    public Integer getParkingId() 
52
+    {
53
+        return parkingId;
54
+    }
55
+    public void setParkingName(String parkingName) 
56
+    {
57
+        this.parkingName = parkingName;
58
+    }
59
+
60
+    public String getParkingName() 
61
+    {
62
+        return parkingName;
63
+    }
64
+    public void setLngLat(String lngLat) 
65
+    {
66
+        this.lngLat = lngLat;
67
+    }
68
+
69
+    public String getLngLat() 
70
+    {
71
+        return lngLat;
72
+    }
73
+    public void setFreeSpots(Integer freeSpots) 
74
+    {
75
+        this.freeSpots = freeSpots;
76
+    }
77
+
78
+    public Integer getFreeSpots() 
79
+    {
80
+        return freeSpots;
81
+    }
82
+    public void setFreeChargers(Integer freeChargers) 
83
+    {
84
+        this.freeChargers = freeChargers;
85
+    }
86
+
87
+    public Integer getFreeChargers() 
88
+    {
89
+        return freeChargers;
90
+    }
91
+    public void setMemo(String memo) 
92
+    {
93
+        this.memo = memo;
94
+    }
95
+
96
+    public String getMemo() 
97
+    {
98
+        return memo;
99
+    }
100
+
101
+    public String getPersonnelName() {
102
+        return personnelName;
103
+    }
104
+
105
+    public void setPersonnelName(String personnelName) {
106
+        this.personnelName = personnelName;
107
+    }
108
+
109
+    @Override
110
+    public String toString() {
111
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
112
+            .append("parkingId", getParkingId())
113
+            .append("parkingName", getParkingName())
114
+            .append("lngLat", getLngLat())
115
+            .append("freeSpots", getFreeSpots())
116
+            .append("freeChargers", getFreeChargers())
117
+            .append("memo", getMemo())
118
+            .append("personnelName", getPersonnelName())
119
+            .toString();
120
+    }
121
+}

+ 110 - 0
src/main/java/com/lqkj/info/entity/ShiftPersonnel.java

@@ -0,0 +1,110 @@
1
+package com.lqkj.info.entity;
2
+
3
+import java.time.LocalTime;
4
+import com.fasterxml.jackson.annotation.JsonFormat;
5
+import org.apache.commons.lang3.builder.ToStringBuilder;
6
+import org.apache.commons.lang3.builder.ToStringStyle;
7
+import com.lqkj.common.annotation.Excel;
8
+import com.lqkj.common.core.model.BaseEntity;
9
+
10
+/**
11
+ * 轮班人员信息对象 shift_personnel
12
+ * 
13
+ * @author lqkj
14
+ * @date 2024-12-23
15
+ */
16
+public class ShiftPersonnel extends BaseEntity
17
+{
18
+    private static final long serialVersionUID = 1L;
19
+
20
+    /** 轮班人员id */
21
+    private Integer personnelId;
22
+
23
+    /** 停车场id */
24
+    @Excel(name = "停车场id")
25
+    private Integer parkingId;
26
+
27
+    /** 轮班人员名字 */
28
+    @Excel(name = "轮班人员名字")
29
+    private String personnelName;
30
+
31
+    /** 值班开始时间 */
32
+    @JsonFormat(pattern = "HH:mm:ss")
33
+    @Excel(name = "值班开始时间", width = 30, dateFormat = "HH:mm:ss")
34
+    private LocalTime startTime;
35
+
36
+    /** 值班结束时间 */
37
+    @JsonFormat(pattern = "HH:mm:ss")
38
+    @Excel(name = "值班结束时间", width = 30, dateFormat = "HH:mm:ss")
39
+    private LocalTime endTime;
40
+
41
+    /** 备注 */
42
+    private String memo;
43
+
44
+    public void setPersonnelId(Integer personnelId) 
45
+    {
46
+        this.personnelId = personnelId;
47
+    }
48
+
49
+    public Integer getPersonnelId() 
50
+    {
51
+        return personnelId;
52
+    }
53
+    public void setParkingId(Integer parkingId) 
54
+    {
55
+        this.parkingId = parkingId;
56
+    }
57
+
58
+    public Integer getParkingId() 
59
+    {
60
+        return parkingId;
61
+    }
62
+    public void setPersonnelName(String personnelName) 
63
+    {
64
+        this.personnelName = personnelName;
65
+    }
66
+
67
+    public String getPersonnelName() 
68
+    {
69
+        return personnelName;
70
+    }
71
+    public void setStartTime(LocalTime startTime) 
72
+    {
73
+        this.startTime = startTime;
74
+    }
75
+
76
+    public LocalTime getStartTime() 
77
+    {
78
+        return startTime;
79
+    }
80
+    public void setEndTime(LocalTime endTime) 
81
+    {
82
+        this.endTime = endTime;
83
+    }
84
+
85
+    public LocalTime getEndTime() 
86
+    {
87
+        return endTime;
88
+    }
89
+    public void setMemo(String memo) 
90
+    {
91
+        this.memo = memo;
92
+    }
93
+
94
+    public String getMemo() 
95
+    {
96
+        return memo;
97
+    }
98
+
99
+    @Override
100
+    public String toString() {
101
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
102
+            .append("personnelId", getPersonnelId())
103
+            .append("parkingId", getParkingId())
104
+            .append("personnelName", getPersonnelName())
105
+            .append("startTime", getStartTime())
106
+            .append("endTime", getEndTime())
107
+            .append("memo", getMemo())
108
+            .toString();
109
+    }
110
+}

+ 68 - 0
src/main/java/com/lqkj/info/mapper/ParkingLotMapper.java

@@ -0,0 +1,68 @@
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.ParkingLot;
6
+import org.apache.ibatis.annotations.Param;
7
+import org.apache.ibatis.annotations.Select;
8
+
9
+/**
10
+ * 停车场信息Mapper接口
11
+ * 
12
+ * @author lqkj
13
+ * @date 2024-12-23
14
+ */
15
+@Mapper
16
+public interface ParkingLotMapper 
17
+{
18
+    /**
19
+     * 查询停车场信息
20
+     * 
21
+     * @param parkingId 停车场信息主键
22
+     * @return 停车场信息
23
+     */
24
+    public ParkingLot selectParkingLotByParkingId(Integer parkingId);
25
+
26
+    /**
27
+     * 查询停车场信息列表
28
+     * 
29
+     * @param parkingLot 停车场信息
30
+     * @return 停车场信息集合
31
+     */
32
+    public List<ParkingLot> selectParkingLotList(ParkingLot parkingLot);
33
+
34
+    /**
35
+     * 新增停车场信息
36
+     * 
37
+     * @param parkingLot 停车场信息
38
+     * @return 结果
39
+     */
40
+    public int insertParkingLot(ParkingLot parkingLot);
41
+
42
+    /**
43
+     * 修改停车场信息
44
+     * 
45
+     * @param parkingLot 停车场信息
46
+     * @return 结果
47
+     */
48
+    public int updateParkingLot(ParkingLot parkingLot);
49
+
50
+    /**
51
+     * 删除停车场信息
52
+     * 
53
+     * @param parkingId 停车场信息主键
54
+     * @return 结果
55
+     */
56
+    public int deleteParkingLotByParkingId(Integer parkingId);
57
+
58
+    /**
59
+     * 批量删除停车场信息
60
+     * 
61
+     * @param parkingIds 需要删除的数据主键集合
62
+     * @return 结果
63
+     */
64
+    public int deleteParkingLotByParkingIds(Integer[] parkingIds);
65
+
66
+
67
+
68
+}

+ 68 - 0
src/main/java/com/lqkj/info/mapper/ShiftPersonnelMapper.java

@@ -0,0 +1,68 @@
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.ShiftPersonnel;
6
+import org.apache.ibatis.annotations.Param;
7
+import org.apache.ibatis.annotations.Select;
8
+
9
+/**
10
+ * 轮班人员信息Mapper接口
11
+ * 
12
+ * @author lqkj
13
+ * @date 2024-12-23
14
+ */
15
+@Mapper
16
+public interface ShiftPersonnelMapper 
17
+{
18
+    /**
19
+     * 查询轮班人员信息
20
+     * 
21
+     * @param personnelId 轮班人员信息主键
22
+     * @return 轮班人员信息
23
+     */
24
+    public ShiftPersonnel selectShiftPersonnelByPersonnelId(Integer personnelId);
25
+
26
+    /**
27
+     * 查询轮班人员信息列表
28
+     * 
29
+     * @param shiftPersonnel 轮班人员信息
30
+     * @return 轮班人员信息集合
31
+     */
32
+    public List<ShiftPersonnel> selectShiftPersonnelList(ShiftPersonnel shiftPersonnel);
33
+
34
+    /**
35
+     * 新增轮班人员信息
36
+     * 
37
+     * @param shiftPersonnel 轮班人员信息
38
+     * @return 结果
39
+     */
40
+    public int insertShiftPersonnel(ShiftPersonnel shiftPersonnel);
41
+
42
+    /**
43
+     * 修改轮班人员信息
44
+     * 
45
+     * @param shiftPersonnel 轮班人员信息
46
+     * @return 结果
47
+     */
48
+    public int updateShiftPersonnel(ShiftPersonnel shiftPersonnel);
49
+
50
+    /**
51
+     * 删除轮班人员信息
52
+     * 
53
+     * @param personnelId 轮班人员信息主键
54
+     * @return 结果
55
+     */
56
+    public int deleteShiftPersonnelByPersonnelId(Integer personnelId);
57
+
58
+    /**
59
+     * 批量删除轮班人员信息
60
+     * 
61
+     * @param personnelIds 需要删除的数据主键集合
62
+     * @return 结果
63
+     */
64
+    public int deleteShiftPersonnelByPersonnelIds(Integer[] personnelIds);
65
+
66
+
67
+    String selectPersonnelName(Integer parkingId);
68
+}

+ 3 - 0
src/main/java/com/lqkj/info/service/BuildingInfoService.java

@@ -3,6 +3,7 @@ package com.lqkj.info.service;
3 3
 import java.util.List;
4 4
 
5 5
 import com.lqkj.type.service.BuildingTypeService;
6
+import org.apache.commons.lang.StringEscapeUtils;
6 7
 import org.springframework.beans.factory.annotation.Autowired;
7 8
 import org.springframework.stereotype.Service;
8 9
 import com.lqkj.info.mapper.BuildingInfoMapper;
@@ -60,6 +61,7 @@ public class BuildingInfoService
60 61
     
61 62
     public int insertBuildingInfo(BuildingInfo buildingInfo)
62 63
     {
64
+        buildingInfo.setMemo(StringEscapeUtils.unescapeHtml(buildingInfo.getMemo()));
63 65
         return buildingInfoMapper.insertBuildingInfo(buildingInfo);
64 66
     }
65 67
 
@@ -72,6 +74,7 @@ public class BuildingInfoService
72 74
     
73 75
     public int updateBuildingInfo(BuildingInfo buildingInfo)
74 76
     {
77
+        buildingInfo.setMemo(StringEscapeUtils.unescapeHtml(buildingInfo.getMemo()));
75 78
         return buildingInfoMapper.updateBuildingInfo(buildingInfo);
76 79
     }
77 80
 

+ 101 - 0
src/main/java/com/lqkj/info/service/ParkingLotService.java

@@ -0,0 +1,101 @@
1
+package com.lqkj.info.service;
2
+
3
+import java.util.List;
4
+
5
+import com.lqkj.info.mapper.ShiftPersonnelMapper;
6
+import org.springframework.beans.factory.annotation.Autowired;
7
+import org.springframework.stereotype.Service;
8
+import com.lqkj.info.mapper.ParkingLotMapper;
9
+import com.lqkj.info.entity.ParkingLot;
10
+import com.lqkj.common.utils.uuid.IdUtils;
11
+/**
12
+ * 停车场信息Service业务层处理
13
+ * 
14
+ * @author lqkj
15
+ * @date 2024-12-23
16
+ */
17
+@Service
18
+public class ParkingLotService
19
+{
20
+    @Autowired
21
+    private ParkingLotMapper parkingLotMapper;
22
+
23
+    @Autowired
24
+    private ShiftPersonnelMapper shiftPersonnelMapper;
25
+
26
+    /**
27
+     * 查询停车场信息
28
+     * 
29
+     * @param parkingId 停车场信息主键
30
+     * @return 停车场信息
31
+     */
32
+    
33
+    public ParkingLot selectParkingLotByParkingId(Integer parkingId)
34
+    {
35
+        return parkingLotMapper.selectParkingLotByParkingId(parkingId);
36
+    }
37
+
38
+    /**
39
+     * 查询停车场信息列表
40
+     * 
41
+     * @param parkingLot 停车场信息
42
+     * @return 停车场信息
43
+     */
44
+    public List<ParkingLot> selectParkingLotList(ParkingLot parkingLot)
45
+    {
46
+        List<ParkingLot> parkingLots = parkingLotMapper.selectParkingLotList(parkingLot);
47
+        parkingLots.forEach(p -> {
48
+            String personnelName = shiftPersonnelMapper.selectPersonnelName(p.getParkingId());
49
+            p.setPersonnelName(personnelName);
50
+        });
51
+        return parkingLots;
52
+    }
53
+
54
+    /**
55
+     * 新增停车场信息
56
+     * 
57
+     * @param parkingLot 停车场信息
58
+     * @return 结果
59
+     */
60
+    
61
+    public int insertParkingLot(ParkingLot parkingLot)
62
+    {
63
+        return parkingLotMapper.insertParkingLot(parkingLot);
64
+    }
65
+
66
+    /**
67
+     * 修改停车场信息
68
+     * 
69
+     * @param parkingLot 停车场信息
70
+     * @return 结果
71
+     */
72
+    
73
+    public int updateParkingLot(ParkingLot parkingLot)
74
+    {
75
+        return parkingLotMapper.updateParkingLot(parkingLot);
76
+    }
77
+
78
+    /**
79
+     * 批量删除停车场信息
80
+     * 
81
+     * @param parkingIds 需要删除的停车场信息主键
82
+     * @return 结果
83
+     */
84
+    
85
+    public int deleteParkingLotByParkingIds(Integer[] parkingIds)
86
+    {
87
+        return parkingLotMapper.deleteParkingLotByParkingIds(parkingIds);
88
+    }
89
+
90
+    /**
91
+     * 删除停车场信息信息
92
+     * 
93
+     * @param parkingId 停车场信息主键
94
+     * @return 结果
95
+     */
96
+    
97
+    public int deleteParkingLotByParkingId(Integer parkingId)
98
+    {
99
+        return parkingLotMapper.deleteParkingLotByParkingId(parkingId);
100
+    }
101
+}

+ 91 - 0
src/main/java/com/lqkj/info/service/ShiftPersonnelService.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.ShiftPersonnelMapper;
7
+import com.lqkj.info.entity.ShiftPersonnel;
8
+import com.lqkj.common.utils.uuid.IdUtils;
9
+/**
10
+ * 轮班人员信息Service业务层处理
11
+ * 
12
+ * @author lqkj
13
+ * @date 2024-12-23
14
+ */
15
+@Service
16
+public class ShiftPersonnelService
17
+{
18
+    @Autowired
19
+    private ShiftPersonnelMapper shiftPersonnelMapper;
20
+
21
+    /**
22
+     * 查询轮班人员信息
23
+     * 
24
+     * @param personnelId 轮班人员信息主键
25
+     * @return 轮班人员信息
26
+     */
27
+    
28
+    public ShiftPersonnel selectShiftPersonnelByPersonnelId(Integer personnelId)
29
+    {
30
+        return shiftPersonnelMapper.selectShiftPersonnelByPersonnelId(personnelId);
31
+    }
32
+
33
+    /**
34
+     * 查询轮班人员信息列表
35
+     * 
36
+     * @param shiftPersonnel 轮班人员信息
37
+     * @return 轮班人员信息
38
+     */
39
+    public List<ShiftPersonnel> selectShiftPersonnelList(ShiftPersonnel shiftPersonnel)
40
+    {
41
+        return shiftPersonnelMapper.selectShiftPersonnelList(shiftPersonnel);
42
+    }
43
+
44
+    /**
45
+     * 新增轮班人员信息
46
+     * 
47
+     * @param shiftPersonnel 轮班人员信息
48
+     * @return 结果
49
+     */
50
+    
51
+    public int insertShiftPersonnel(ShiftPersonnel shiftPersonnel)
52
+    {
53
+        return shiftPersonnelMapper.insertShiftPersonnel(shiftPersonnel);
54
+    }
55
+
56
+    /**
57
+     * 修改轮班人员信息
58
+     * 
59
+     * @param shiftPersonnel 轮班人员信息
60
+     * @return 结果
61
+     */
62
+    
63
+    public int updateShiftPersonnel(ShiftPersonnel shiftPersonnel)
64
+    {
65
+        return shiftPersonnelMapper.updateShiftPersonnel(shiftPersonnel);
66
+    }
67
+
68
+    /**
69
+     * 批量删除轮班人员信息
70
+     * 
71
+     * @param personnelIds 需要删除的轮班人员信息主键
72
+     * @return 结果
73
+     */
74
+    
75
+    public int deleteShiftPersonnelByPersonnelIds(Integer[] personnelIds)
76
+    {
77
+        return shiftPersonnelMapper.deleteShiftPersonnelByPersonnelIds(personnelIds);
78
+    }
79
+
80
+    /**
81
+     * 删除轮班人员信息信息
82
+     * 
83
+     * @param personnelId 轮班人员信息主键
84
+     * @return 结果
85
+     */
86
+    
87
+    public int deleteShiftPersonnelByPersonnelId(Integer personnelId)
88
+    {
89
+        return shiftPersonnelMapper.deleteShiftPersonnelByPersonnelId(personnelId);
90
+    }
91
+}

+ 36 - 0
src/main/resources/db/migration/V1_10__20241223.sql

@@ -0,0 +1,36 @@
1
+create table if not exists parking_lot (
2
+                             parking_id           SERIAL               not null,
3
+                             parking_name         VARCHAR(255)         null,
4
+                             lng_lat              VARCHAR(255)         null,
5
+                             free_spots           INT4                 null,
6
+                             free_chargers        INT4                 null,
7
+                             memo                 VARCHAR(255)         null,
8
+                             constraint PK_PARKING_LOT primary key (parking_id)
9
+);
10
+comment on table parking_lot is
11
+'停车场信息';
12
+comment on column parking_lot.parking_id is
13
+'停车场id';
14
+comment on column parking_lot.parking_name is
15
+'停车场名称';
16
+comment on column parking_lot.lng_lat is
17
+'坐标';
18
+comment on column parking_lot.free_spots is
19
+'空余车位';
20
+comment on column parking_lot.free_chargers is
21
+'空余充电桩';
22
+comment on column parking_lot.memo is
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', 'parkingLot', 'info/parkingLot/index', false, true, 'C', true, true, 'info:parkingLot: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:parkingLot:query',        '#', 'admin', now(), '', null, ''),
33
+    ('停车场信息新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:parkingLot:add',          '#', 'admin', now(), '', null, ''),
34
+    ('停车场信息修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:parkingLot:edit',         '#', 'admin', now(), '', null, ''),
35
+    ('停车场信息删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:parkingLot:remove',       '#', 'admin', now(), '', null, ''),
36
+    ('停车场信息导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:parkingLot:export',       '#', 'admin', now(), '', null, '');

+ 36 - 0
src/main/resources/db/migration/V1_11__20241223.sql

@@ -0,0 +1,36 @@
1
+create table if not exists shift_personnel (
2
+    personnel_id           SERIAL               not null,
3
+    parking_id             INT4                 null,
4
+    personnel_name         VARCHAR(255)         null,
5
+    start_time             TIME                 NULL,
6
+    end_time               TIME                 NULL,
7
+    memo                   VARCHAR(255)         null,
8
+    constraint PK_SHIFT_PERSONNEL primary key (personnel_id)
9
+    );
10
+comment on table shift_personnel is
11
+'轮班人员信息';
12
+comment on column shift_personnel.personnel_id is
13
+'轮班人员id';
14
+comment on column shift_personnel.parking_id is
15
+'停车场id';
16
+comment on column shift_personnel.personnel_name is
17
+'轮班人员名字';
18
+comment on column shift_personnel.start_time is
19
+'值班开始时间';
20
+comment on column shift_personnel.end_time is
21
+'值班结束时间';
22
+comment on column shift_personnel.memo is
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', 'shiftPersonnel', 'info/shiftPersonnel/index', false, true, 'C', true, true, 'info:shiftPersonnel: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:shiftPersonnel:query',        '#', 'admin', now(), '', null, ''),
33
+    ('轮班人员信息新增', (select * from temp_menu), '2',  '#', '', false, true, 'F', true, true, 'info:shiftPersonnel:add',          '#', 'admin', now(), '', null, ''),
34
+    ('轮班人员信息修改', (select * from temp_menu), '3',  '#', '', false, true, 'F', true, true, 'info:shiftPersonnel:edit',         '#', 'admin', now(), '', null, ''),
35
+    ('轮班人员信息删除', (select * from temp_menu), '4',  '#', '', false, true, 'F', true, true, 'info:shiftPersonnel:remove',       '#', 'admin', now(), '', null, ''),
36
+    ('轮班人员信息导出', (select * from temp_menu), '5',  '#', '', false, true, 'F', true, true, 'info:shiftPersonnel:export',       '#', 'admin', now(), '', null, '');

+ 3 - 0
src/main/resources/db/migration/V1_9__20241219.sql

@@ -0,0 +1,3 @@
1
+ALTER TABLE elevator_info
2
+    add COLUMN if not exists connect_status int;
3
+comment on column elevator_info.connect_status is '连接状态';

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

@@ -14,10 +14,11 @@
14 14
 		<result property="type" column="type"/>
15 15
 		<result property="runFloor"    column="run_floors"    />
16 16
 		<result property="runTime"    column="run_time"    />
17
+		<result property="connectStatus"    column="connect_status"    />
17 18
 	</resultMap>
18 19
 
19 20
 	<sql id="selectElevatorInfoVo">
20
-		select elevator_id, elevator_code, building_id, status, elevator_name, upkeep_num, type, run_floors, run_time from elevator_info
21
+		select elevator_id, elevator_code, building_id, status, elevator_name, upkeep_num, type, run_floors, run_time, connect_status from elevator_info
21 22
 	</sql>
22 23
 
23 24
 	<select id="selectElevatorInfoList" parameterType="ElevatorInfo" resultMap="ElevatorInfoResult">
@@ -30,6 +31,7 @@
30 31
 			<if test="type != null "> and type = #{type}</if>
31 32
 			<if test="runFloor != null and runFloor != ''"> and run_floors like concat('%', #{runFloor}, '%')</if>
32 33
 			<if test="runTime != null and runTime != ''"> and run_time like concat('%', #{runTime}, '%')</if>
34
+			<if test="connectStatus != null "> and connect_status = #{connectStatus}</if>
33 35
 		</where>
34 36
 		order by elevator_id
35 37
 
@@ -51,6 +53,7 @@
51 53
 		    <if test="type != null">type,</if>
52 54
 		    <if test="runFloor != null and runFloor != ''">run_floors,</if>
53 55
 		    <if test="runTime != null and runTime != ''">run_time,</if>
56
+		    <if test="connectStatus != null">connect_status,</if>
54 57
 		</trim>
55 58
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
56 59
 			<if test="elevatorCode != null and elevatorCode != ''">#{elevatorCode},</if>
@@ -61,6 +64,7 @@
61 64
 		    <if test="type != null">#{type},</if>
62 65
 		    <if test="runFloor != null and runFloor != ''">#{runFloor},</if>
63 66
 		    <if test="runTime != null and runTime != ''">#{runTime},</if>
67
+		    <if test="connectStatus != null">#{connectStatus},</if>
64 68
 		</trim>
65 69
 	</insert>
66 70
 
@@ -75,6 +79,7 @@
75 79
 		    type = #{type},
76 80
 			run_floors = #{runFloor},
77 81
 		    run_time = #{runTime},
82
+		    connect_status = #{connectStatus}
78 83
 		</trim>
79 84
 		where elevator_id = #{elevatorId}
80 85
 	</update>

+ 74 - 0
src/main/resources/mapper/info/ParkingLotMapper.xml

@@ -0,0 +1,74 @@
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.ParkingLotMapper">
6
+
7
+	<resultMap type="ParkingLot" id="ParkingLotResult">
8
+		<result property="parkingId"    column="parking_id"    />
9
+		<result property="parkingName"    column="parking_name"    />
10
+		<result property="lngLat"    column="lng_lat"    />
11
+		<result property="freeSpots"    column="free_spots"    />
12
+		<result property="freeChargers"    column="free_chargers"    />
13
+		<result property="memo"    column="memo"    />
14
+	</resultMap>
15
+
16
+	<sql id="selectParkingLotVo">
17
+		select parking_id, parking_name, lng_lat, free_spots, free_chargers, memo from parking_lot
18
+	</sql>
19
+
20
+	<select id="selectParkingLotList" parameterType="ParkingLot" resultMap="ParkingLotResult">
21
+		<include refid="selectParkingLotVo"/>
22
+		<where>
23
+			<if test="parkingName != null  and parkingName != ''"> and parking_name like concat('%', #{parkingName}, '%')</if>
24
+		</where>
25
+		order by parking_id
26
+
27
+	</select>
28
+
29
+	<select id="selectParkingLotByParkingId" parameterType="Integer" resultMap="ParkingLotResult">
30
+		<include refid="selectParkingLotVo"/>
31
+		where parking_id = #{parkingId}
32
+	</select>
33
+
34
+	<insert id="insertParkingLot" parameterType="ParkingLot" useGeneratedKeys="true" keyProperty="parkingId">
35
+		insert into parking_lot
36
+		<trim prefix="(" suffix=")" suffixOverrides=",">
37
+			<if test="parkingName != null and parkingName != ''">parking_name,</if>
38
+			<if test="lngLat != null and lngLat != ''">lng_lat,</if>
39
+			<if test="freeSpots != null">free_spots,</if>
40
+			<if test="freeChargers != null">free_chargers,</if>
41
+			<if test="memo != null and memo != ''">memo,</if>
42
+		</trim>
43
+		<trim prefix="values (" suffix=")" suffixOverrides=",">
44
+			<if test="parkingName != null and parkingName != ''">#{parkingName},</if>
45
+			<if test="lngLat != null and lngLat != ''">#{lngLat},</if>
46
+			<if test="freeSpots != null">#{freeSpots},</if>
47
+			<if test="freeChargers != null">#{freeChargers},</if>
48
+			<if test="memo != null and memo != ''">#{memo},</if>
49
+		</trim>
50
+	</insert>
51
+
52
+	<update id="updateParkingLot" parameterType="ParkingLot">
53
+		update parking_lot
54
+		<trim prefix="SET" suffixOverrides=",">
55
+			<if test="parkingName != null  and parkingName != ''">parking_name = #{parkingName},</if>
56
+			lng_lat = #{lngLat},
57
+			free_spots = #{freeSpots},
58
+			free_chargers = #{freeChargers},
59
+			memo = #{memo},
60
+		</trim>
61
+		where parking_id = #{parkingId}
62
+	</update>
63
+
64
+	<delete id="deleteParkingLotByParkingId" parameterType="Integer">
65
+		delete from parking_lot where parking_id = #{parkingId}
66
+	</delete>
67
+
68
+	<delete id="deleteParkingLotByParkingIds" parameterType="String">
69
+		delete from parking_lot where parking_id in
70
+		<foreach item="parkingId" collection="array" open="(" separator="," close=")">
71
+			#{parkingId}
72
+		</foreach>
73
+	</delete>
74
+</mapper>

+ 81 - 0
src/main/resources/mapper/info/ShiftPersonnelMapper.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.ShiftPersonnelMapper">
6
+
7
+	<resultMap type="ShiftPersonnel" id="ShiftPersonnelResult">
8
+		<result property="personnelId"    column="personnel_id"    />
9
+		<result property="parkingId"    column="parking_id"    />
10
+		<result property="personnelName"    column="personnel_name"    />
11
+		<result property="startTime"    column="start_time"    />
12
+		<result property="endTime"    column="end_time"    />
13
+		<result property="memo"    column="memo"    />
14
+	</resultMap>
15
+
16
+	<sql id="selectShiftPersonnelVo">
17
+		select personnel_id, parking_id, personnel_name, start_time, end_time, memo from shift_personnel
18
+	</sql>
19
+
20
+	<select id="selectShiftPersonnelList" parameterType="ShiftPersonnel" resultMap="ShiftPersonnelResult">
21
+		<include refid="selectShiftPersonnelVo"/>
22
+		<where>
23
+			<if test="personnelName != null  and personnelName != ''"> and personnel_name like concat('%', #{personnelName}, '%')</if>
24
+			<if test="parkingId != null "> and parking_id = #{parkingId}</if>
25
+			<if test="startTime != null "> and start_time like concat('%', #{startTime}, '%')</if>
26
+			<if test="endTime != null "> and end_time like concat('%', #{endTime}, '%')</if>
27
+		</where>
28
+		order by personnel_id
29
+
30
+	</select>
31
+
32
+	<select id="selectShiftPersonnelByPersonnelId" parameterType="Integer" resultMap="ShiftPersonnelResult">
33
+		<include refid="selectShiftPersonnelVo"/>
34
+		where personnel_id = #{personnelId}
35
+	</select>
36
+	<select id="selectPersonnelName" resultType="java.lang.String">
37
+		select personnel_name from shift_personnel where parking_id = #{parkingId}
38
+		and CURRENT_TIME BETWEEN start_time AND end_time
39
+	</select>
40
+
41
+	<insert id="insertShiftPersonnel" parameterType="ShiftPersonnel" useGeneratedKeys="true" keyProperty="personnelId">
42
+		insert into shift_personnel
43
+		<trim prefix="(" suffix=")" suffixOverrides=",">
44
+			<if test="parkingId != null">parking_id,</if>
45
+			<if test="personnelName != null and personnelName != ''">personnel_name,</if>
46
+			<if test="startTime != null">start_time,</if>
47
+			<if test="endTime != null">end_time,</if>
48
+			<if test="memo != null and memo != ''">memo,</if>
49
+		</trim>
50
+		<trim prefix="values (" suffix=")" suffixOverrides=",">
51
+			<if test="parkingId != null">#{parkingId},</if>
52
+			<if test="personnelName != null and personnelName != ''">#{personnelName},</if>
53
+			<if test="startTime != null">#{startTime},</if>
54
+			<if test="endTime != null">#{endTime},</if>
55
+			<if test="memo != null and memo != ''">#{memo},</if>
56
+		</trim>
57
+	</insert>
58
+
59
+	<update id="updateShiftPersonnel" parameterType="ShiftPersonnel">
60
+		update shift_personnel
61
+		<trim prefix="SET" suffixOverrides=",">
62
+			parking_id = #{parkingId},
63
+			personnel_name = #{personnelName},
64
+			start_time = #{startTime},
65
+			end_time = #{endTime},
66
+			memo = #{memo},
67
+		</trim>
68
+		where personnel_id = #{personnelId}
69
+	</update>
70
+
71
+	<delete id="deleteShiftPersonnelByPersonnelId" parameterType="Integer">
72
+		delete from shift_personnel where personnel_id = #{personnelId}
73
+	</delete>
74
+
75
+	<delete id="deleteShiftPersonnelByPersonnelIds" parameterType="String">
76
+		delete from shift_personnel where personnel_id in
77
+		<foreach item="personnelId" collection="array" open="(" separator="," close=")">
78
+			#{personnelId}
79
+		</foreach>
80
+	</delete>
81
+</mapper>