package com.iailab.module.data.channel.kio.controller.admin;
|
|
import com.iailab.framework.common.pojo.CommonResult;
|
import com.iailab.framework.common.pojo.PageResult;
|
import com.iailab.framework.common.util.object.BeanUtils;
|
import com.iailab.module.data.channel.kio.collector.KingIOCollector;
|
import com.iailab.module.data.channel.kio.entity.ChannelKioTagEntity;
|
import com.iailab.module.data.channel.kio.service.ChannelKioTagService;
|
import com.iailab.module.data.channel.kio.vo.KioTagPageReqVO;
|
import com.iailab.module.data.channel.kio.vo.KioTagRespVO;
|
import io.swagger.v3.oas.annotations.Operation;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.web.bind.annotation.*;
|
|
import javax.annotation.Resource;
|
import javax.validation.Valid;
|
import java.util.Date;
|
import java.util.List;
|
import java.util.UUID;
|
import java.util.stream.Collectors;
|
|
import static com.iailab.framework.common.pojo.CommonResult.success;
|
|
/**
|
|
*/
|
@RestController
|
@RequestMapping("/data/channel/kio/tag")
|
public class ChannelKioTagController {
|
@Resource
|
private ChannelKioTagService channelKioTagService;
|
|
@Resource
|
private KingIOCollector kingIOCollector;
|
|
/**
|
* 分页查询tag
|
* */
|
@PreAuthorize("@ss.hasPermission('data:channel-kio:query')")
|
@GetMapping("page")
|
public CommonResult<PageResult<KioTagRespVO>> page(@Valid KioTagPageReqVO reqVO){
|
|
PageResult<ChannelKioTagEntity> page = channelKioTagService.queryPage(reqVO);
|
PageResult<KioTagRespVO> pageResultVO = new PageResult<>();
|
pageResultVO.setTotal(page.getTotal());
|
|
List<KioTagRespVO> vos = page.getList().stream().map(entity -> {
|
|
KioTagRespVO vo = BeanUtils.toBean(entity,KioTagRespVO.class);
|
try {
|
vo.setDataValue(Double.parseDouble(kingIOCollector.getTagValue(reqVO.getDeviceId(), entity.getTagName())));
|
}catch (Exception e){
|
e.printStackTrace();
|
}
|
return vo;
|
}).collect(Collectors.toList());
|
|
pageResultVO.setList(vos);
|
|
return success(pageResultVO);
|
}
|
|
@PreAuthorize("@ss.hasPermission('data:channel-kio:query')")
|
@GetMapping("/info/{id}")
|
@Operation(summary = "信息")
|
public CommonResult<ChannelKioTagEntity> info(@PathVariable("id") String id) {
|
ChannelKioTagEntity info = channelKioTagService.info(id);
|
return success(info);
|
}
|
|
@PreAuthorize("@ss.hasPermission('data:channel-kio:create')")
|
@PostMapping("/create")
|
public CommonResult<Boolean> create(@RequestBody ChannelKioTagEntity channelKioTagEntity) {
|
String id = UUID.randomUUID().toString();
|
channelKioTagEntity.setId(id);
|
channelKioTagEntity.setCreateTime(new Date());
|
channelKioTagService.add(channelKioTagEntity);
|
return success(true);
|
}
|
|
@PreAuthorize("@ss.hasPermission('data:channel-kio:update')")
|
@PutMapping("/update")
|
public CommonResult<Boolean> update(@RequestBody ChannelKioTagEntity channelKioTagEntity) {
|
channelKioTagEntity.setUpdateTime(new Date());
|
channelKioTagService.update(channelKioTagEntity);
|
return success(true);
|
}
|
|
@PreAuthorize("@ss.hasPermission('data:channel-kio:delete')")
|
@DeleteMapping("/delete")
|
public CommonResult<Boolean> delete(@RequestParam("id") String id) {
|
channelKioTagService.delete(id);
|
return success(true);
|
}
|
|
}
|