| | |
| | | package com.iailab.module.data.point.controller.admin; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.iailab.framework.apilog.core.annotation.ApiAccessLog; |
| | | import com.iailab.framework.common.pojo.CommonResult; |
| | | import com.iailab.framework.common.pojo.PageParam; |
| | |
| | | import com.iailab.framework.common.util.object.ConvertUtils; |
| | | import com.iailab.framework.excel.core.util.ExcelUtils; |
| | | import com.iailab.module.data.api.dto.ApiPointValueQueryDTO; |
| | | import com.iailab.module.data.common.enums.DataSourceType; |
| | | import com.iailab.module.data.common.enums.DataTypeEnum; |
| | | import com.iailab.module.data.common.enums.MeasureValueType; |
| | | import com.iailab.module.data.influxdb.service.InfluxDBService; |
| | | import com.iailab.module.data.point.common.PointTypeEnum; |
| | | import com.iailab.module.data.point.dto.DaPointDTO; |
| | | import com.iailab.module.data.point.entity.DaPointEntity; |
| | | import com.iailab.module.data.point.service.DaPointService; |
| | | import com.iailab.module.data.point.vo.*; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.*; |
| | | |
| | | import static com.iailab.framework.common.pojo.CommonResult.success; |
| | | import static com.iailab.framework.apilog.core.enums.OperateTypeEnum.EXPORT; |
| | | import static com.iailab.framework.common.pojo.CommonResult.success; |
| | | |
| | | |
| | | /** |
| | |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:point:query')") |
| | | @GetMapping("page") |
| | | public CommonResult<PageResult<DaPointDTO>> page(@Valid DaPointPageReqVO reqVO){ |
| | | public CommonResult<PageResult<DaPointDTO>> page(@Valid DaPointPageReqVO reqVO) { |
| | | PageResult<DaPointDTO> page = daPointService.queryPage(reqVO); |
| | | return success(page); |
| | | } |
| | |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:point:query')") |
| | | @GetMapping("/info/{id}") |
| | | public CommonResult<DaPointDTO> info(@PathVariable("id") String id){ |
| | | DaPointDTO info= daPointService.info(id); |
| | | public CommonResult<DaPointDTO> info(@PathVariable("id") String id) { |
| | | DaPointDTO info = daPointService.info(id); |
| | | return success(info); |
| | | } |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:point:create')") |
| | | @PostMapping("create") |
| | | public CommonResult<Boolean> create(@RequestBody DaPointDTO daPointDTO){ |
| | | public CommonResult<Boolean> create(@RequestBody DaPointDTO daPointDTO) { |
| | | String id = UUID.randomUUID().toString(); |
| | | daPointDTO.setId(id); |
| | | daPointService.add(daPointDTO); |
| | |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:point:query')") |
| | | @GetMapping("pointNo") |
| | | public CommonResult<List<DaPointDTO>> getpoint(@RequestParam Map<String, Object> params){ |
| | | public CommonResult<List<DaPointDTO>> getPoint(@RequestParam Map<String, Object> params) { |
| | | List<DaPointDTO> list = daPointService.list(params); |
| | | |
| | | return new CommonResult<List<DaPointDTO>>().setData(list); |
| | |
| | | @PreAuthorize("@ss.hasPermission('data:point:export')") |
| | | @ApiAccessLog(operateType = EXPORT) |
| | | public void exportPointList(@Validated DaPointPageReqVO exportReqVO, |
| | | HttpServletResponse response) throws IOException { |
| | | HttpServletResponse response) throws IOException { |
| | | exportReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); |
| | | List<DaPointEntity> list = daPointService.queryExcelList(exportReqVO).getList(); |
| | | List<DaPointExcelVO> daPointExcelVOlist = ConvertUtils.sourceToTarget(list,DaPointExcelVO.class); |
| | | ExcelUtils.write(response, "测点列表.xls", "数据", DaPointExcelVO.class, daPointExcelVOlist); |
| | | List<DaPointExcelVO> dataList = new ArrayList<>(); |
| | | List<DaPointDTO> measurePointList = daPointService.getMeasurePoint(exportReqVO); |
| | | dataList.addAll(ConvertUtils.sourceToTarget(measurePointList, DaPointExcelVO.class)); |
| | | List<DaPointDTO> mathPointList = daPointService.getMathPoint(exportReqVO); |
| | | dataList.addAll(ConvertUtils.sourceToTarget(mathPointList, DaPointExcelVO.class)); |
| | | List<DaPointDTO> constantPointList = daPointService.getConstantPoint(exportReqVO); |
| | | dataList.addAll(ConvertUtils.sourceToTarget(constantPointList, DaPointExcelVO.class)); |
| | | ExcelUtils.write(response, "测点列表.xls", "测点列表", DaPointExcelVO.class, dataList); |
| | | } |
| | | |
| | | @GetMapping("/exportValue") |
| | |
| | | List<String> pointNos = new ArrayList<>(); |
| | | pointNos.add(pointNo); |
| | | queryDto.setPointNos(pointNos); |
| | | try{ |
| | | try { |
| | | if (start == null) { |
| | | queryDto.setStart(new Date()); |
| | | }else{ |
| | | } else { |
| | | queryDto.setStart(formatter.parse(start)); |
| | | |
| | | } |
| | | if (end == null) { |
| | | queryDto.setEnd(new Date()); |
| | | }else{ |
| | | } else { |
| | | queryDto.setStart(formatter.parse(end)); |
| | | } |
| | | } catch (ParseException e) { |
| | |
| | | public void importTemplate(HttpServletResponse response) throws IOException { |
| | | // 手动创建导出 demo |
| | | List<PointImportExcelVO> list = Arrays.asList( |
| | | PointImportExcelVO.builder().pointName("测点1").pointType("MEASURE").dataType("float").valueType("SIMULATE") |
| | | PointImportExcelVO.builder().pointName("测点1").pointType(PointTypeEnum.MEASURE_POINT.getCode()).dataType(DataTypeEnum.FLOAT.getCode()).valueType(MeasureValueType.SIMULATE.getCode()) |
| | | .storeType(null).unit("t(非必填)").unittransfactor(new BigDecimal(1)).defaultValue(new BigDecimal(0)).maxValue(new BigDecimal(10000000.000000)).minValue(new BigDecimal(0)) |
| | | .minfreqid("NET10").remark("备注(非必填)").sourceType("HTTP").sourceId("b9d0f670-2135-458f-9494-0cda4f35ec09").tagNo("SARD1200G00102RC001") |
| | | .minfreqid("1min").remark("备注(非必填)").sourceType(DataSourceType.HTTP.getCode()) |
| | | .sourceName("").tagNo("SARD1200G00102RC001") |
| | | .build() |
| | | ); |
| | | // 输出 |
| | | ExcelUtils.write(response, "测点导入模板.xls", "测点列表", PointImportExcelVO.class, list); |
| | | ExcelUtils.write(response, "测点导入模板.xlsx", "测点列表", PointImportExcelVO.class, list,true); |
| | | } |
| | | |
| | | @PostMapping("/import") |