| | |
| | | import com.iailab.module.data.channel.kio.vo.KioDeviceRespVO; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | @Resource |
| | | private ChannelKioDeviceService channelKioDeviceService; |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-kio:query')") |
| | | @GetMapping("page") |
| | | public CommonResult<PageResult<KioDeviceRespVO>> list(@Valid KioDevicePageReqVO reqVO) { |
| | | PageResult<ChannelKioDeviceEntity> page = channelKioDeviceService.queryPage(reqVO); |
| | | return success(BeanUtils.toBean(page, KioDeviceRespVO.class)); |
| | | } |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-kio:query')") |
| | | @GetMapping("/info/{id}") |
| | | @Operation(summary = "信息") |
| | | public CommonResult<ChannelKioDeviceEntity> info(@PathVariable("id") String id) { |
| | |
| | | return success(info); |
| | | } |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-kio:create')") |
| | | @PostMapping("/add") |
| | | public CommonResult<Boolean> add(@RequestBody ChannelKioDeviceEntity channelKioDeviceEntity) { |
| | | public CommonResult<Boolean> create(@RequestBody ChannelKioDeviceEntity channelKioDeviceEntity) { |
| | | String id = UUID.randomUUID().toString(); |
| | | channelKioDeviceEntity.setId(id); |
| | | channelKioDeviceEntity.setCreateTime(new Date()); |
| | |
| | | return success(true); |
| | | } |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-kio:update')") |
| | | @PutMapping("/update") |
| | | public CommonResult<Boolean> update(@RequestBody ChannelKioDeviceEntity channelKioDeviceEntity) { |
| | | channelKioDeviceEntity.setUpdateTime(new Date()); |
| | |
| | | return success(true); |
| | | } |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-kio:delete')") |
| | | @DeleteMapping("/delete") |
| | | public CommonResult<Boolean> delete(@RequestParam("id") String id) { |
| | | channelKioDeviceService.delete(id); |