Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/channel/modbus/controller/admin/ChannelModbusDeviceController.java
@@ -10,6 +10,7 @@
import javax.annotation.Resource;
import com.iailab.module.data.channel.modbus.vo.ModBusDeviceRespVO;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
@@ -34,6 +35,7 @@
     *
     * @param reqVO
     */
    @PreAuthorize("@ss.hasPermission('data:channel-modbus:query')")
    @GetMapping("/page")
    public CommonResult<PageResult<ModBusDeviceRespVO>> list(@Validated ModBusDevicePageReqVO reqVO) {
        PageResult<ChannelModBusDeviceEntity> page = channelModbusDeviceService.queryPage(reqVO);
@@ -46,6 +48,7 @@
     *
     * @param id
     */
    @PreAuthorize("@ss.hasPermission('data:channel-modbus:query')")
    @GetMapping("/info/{id}")
    public CommonResult<ChannelModBusDeviceEntity> info(@PathVariable("id") String id) {
        ChannelModBusDeviceEntity info = channelModbusDeviceService.info(id);
@@ -57,8 +60,9 @@
     *
     * @param channelModBusDeviceEntity
     */
    @PostMapping("/add")
    public CommonResult<Boolean> add(@RequestBody ChannelModBusDeviceEntity channelModBusDeviceEntity) {
    @PreAuthorize("@ss.hasPermission('data:channel-modbus:create')")
    @PostMapping("/create")
    public CommonResult<Boolean> create(@RequestBody ChannelModBusDeviceEntity channelModBusDeviceEntity) {
        String id = UUID.randomUUID().toString();
        channelModBusDeviceEntity.setId(id);
        channelModbusDeviceService.add(channelModBusDeviceEntity);
@@ -70,6 +74,7 @@
     *
     * @param channelModBusDeviceEntity
     */
    @PreAuthorize("@ss.hasPermission('data:channel-modbus:update')")
    @PutMapping("/update")
    public CommonResult<Boolean> update(@RequestBody ChannelModBusDeviceEntity channelModBusDeviceEntity) {
        channelModbusDeviceService.update(channelModBusDeviceEntity);
@@ -81,6 +86,7 @@
     *
     * @param id
     */
    @PreAuthorize("@ss.hasPermission('data:channel-modbus:delete')")
    @DeleteMapping("/delete")
    public CommonResult<Boolean> delete(@RequestParam("id") String id) {
        channelModbusDeviceService.delete(id);