|
@@ -1,44 +1,26 @@
|
|
|
package org.jeecg.modules.dataVoltage.controller;
|
|
|
|
|
|
-import java.util.Arrays;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
-import java.util.stream.Collectors;
|
|
|
-import java.io.IOException;
|
|
|
-import java.io.UnsupportedEncodingException;
|
|
|
-import java.net.URLDecoder;
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
-import javax.servlet.http.HttpServletResponse;
|
|
|
-import org.jeecg.common.api.vo.Result;
|
|
|
-import org.jeecg.common.system.query.QueryGenerator;
|
|
|
-import org.jeecg.common.util.oConvertUtils;
|
|
|
-import org.jeecg.modules.dataVoltage.dto.DataVoltageQueryDTO;
|
|
|
-import org.jeecg.modules.dataVoltage.entity.DataVoltage;
|
|
|
-import org.jeecg.modules.dataVoltage.service.IDataVoltageService;
|
|
|
-
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-
|
|
|
-import org.jeecg.modules.dataVoltage.vo.DataVoltageVO;
|
|
|
-import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
|
-import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
|
-import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
|
-import org.jeecgframework.poi.excel.entity.ImportParams;
|
|
|
-import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
|
|
|
+import org.jeecg.common.api.vo.Result;
|
|
|
+import org.jeecg.common.aspect.annotation.AutoLog;
|
|
|
import org.jeecg.common.system.base.controller.JeecgController;
|
|
|
+import org.jeecg.common.system.query.QueryGenerator;
|
|
|
+import org.jeecg.modules.dataVoltage.entity.DataVoltage;
|
|
|
+import org.jeecg.modules.dataVoltage.service.IDataVoltageService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
-import org.springframework.web.multipart.MultipartFile;
|
|
|
-import org.springframework.web.multipart.MultipartHttpServletRequest;
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
-import com.alibaba.fastjson.JSON;
|
|
|
-import io.swagger.annotations.Api;
|
|
|
-import io.swagger.annotations.ApiOperation;
|
|
|
-import org.jeecg.common.aspect.annotation.AutoLog;
|
|
|
|
|
|
- /**
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
+import java.util.Arrays;
|
|
|
+
|
|
|
+/**
|
|
|
* @Description: 设备实时电压
|
|
|
* @Author: jeecg-boot
|
|
|
* @Date: 2024-01-19
|
|
@@ -52,16 +34,6 @@ public class DataVoltageController extends JeecgController<DataVoltage, IDataVol
|
|
|
@Autowired
|
|
|
private IDataVoltageService dataVoltageService;
|
|
|
|
|
|
- /**
|
|
|
- * 参数历史查询
|
|
|
- */
|
|
|
- @ApiOperation(value="参数历史查询", notes="参数历史查询")
|
|
|
- @GetMapping(value = "/dataList")
|
|
|
- public Result<List<DataVoltageVO>> dataList(DataVoltageQueryDTO dto) {
|
|
|
- List<DataVoltageVO> list = dataVoltageService.dataList(dto);
|
|
|
- return Result.OK(list);
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* 分页列表查询
|
|
|
*
|