| | |
| | | import io.swagger.v3.oas.annotations.Parameters; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | |
| | | @PreAuthorize("@ss.hasPermission('data:point:update')") |
| | | @PutMapping("/enable") |
| | | @Operation(summary = "启用") |
| | | @Transactional |
| | | public CommonResult<Boolean> enable(@RequestBody String[] ids) { |
| | | daPointService.enableByIds(ids); |
| | | return success(true); |
| | |
| | | @PreAuthorize("@ss.hasPermission('data:point:update')") |
| | | @PutMapping("/disable") |
| | | @Operation(summary = "禁用") |
| | | @Transactional |
| | | public CommonResult<Boolean> disable(@RequestBody String[] ids) { |
| | | daPointService.disableByIds(ids); |
| | | return success(true); |
| | |
| | | dataList.addAll(ConvertUtils.sourceToTarget(mathPointList, DaPointExcelVO.class)); |
| | | List<DaPointDTO> constantPointList = daPointService.getConstantPoint(exportReqVO); |
| | | dataList.addAll(ConvertUtils.sourceToTarget(constantPointList, DaPointExcelVO.class)); |
| | | List<DaPointDTO> cumulatePointList = daPointService.getCumulatePoint(exportReqVO); |
| | | dataList.addAll(ConvertUtils.sourceToTarget(cumulatePointList, DaPointExcelVO.class)); |
| | | ExcelUtils.write(response, "测点列表.xls", "测点列表", DaPointExcelVO.class, dataList); |
| | | } |
| | | |
| | |
| | | if (end == null) { |
| | | queryDto.setEnd(new Date()); |
| | | } else { |
| | | queryDto.setStart(formatter.parse(end)); |
| | | queryDto.setEnd(formatter.parse(end)); |
| | | } |
| | | } catch (ParseException e) { |
| | | e.printStackTrace(); |
| | |
| | | @Parameter(name = "file", description = "Excel 文件", required = true), |
| | | @Parameter(name = "updateSupport", description = "是否支持更新,默认为 false", example = "true") |
| | | }) |
| | | // @PreAuthorize("@ss.hasPermission('data:point:import')") |
| | | public CommonResult<PointImportRespVO> importExcel(@RequestParam("file") MultipartFile file, |
| | | @RequestParam(value = "updateSupport", required = false, defaultValue = "false") Boolean updateSupport) throws Exception { |
| | | List<PointImportExcelVO> list = ExcelUtils.read(file, PointImportExcelVO.class); |