- package com.newfiber.termite.controller;
-
- import com.newfiber.common.core.exception.ServiceException;
- import com.newfiber.common.core.utils.poi.ExcelUtil;
- import com.newfiber.common.core.web.controller.BaseController;
- import com.newfiber.common.core.web.domain.Result;
- import com.newfiber.common.core.web.page.PageResult;
- import com.newfiber.common.log.annotation.Log;
- import com.newfiber.common.log.enums.BusinessType;
- import com.newfiber.termite.domain.DeviceInfo;
- import com.newfiber.termite.domain.SnDeviceInfo;
- import com.newfiber.termite.domain.request.deviceInfo.*;
- import com.newfiber.termite.service.IDeviceInfoService;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import java.util.List;
- import javax.annotation.Resource;
- import javax.validation.Valid;
- import org.springframework.web.bind.annotation.DeleteMapping;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.PathVariable;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.PutMapping;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- import org.springframework.web.multipart.MultipartFile;
-
- /**
- * 设备信息Controller
- *
- * @author X.K
- * @date 2024-05-27
- */
- @RestController
- @RequestMapping("/deviceInfo")
- @Api(value = "设备信息", tags = "设备信息")
- public class DeviceInfoController extends BaseController {
-
- @Resource
- private IDeviceInfoService deviceInfoService;
-
- /**
- * 新增设备信息
- */
- @PostMapping("add")
- @ApiOperation(value = "新增设备信息", position = 10)
- @Log(title = "设备信息", businessType = BusinessType.INSERT)
- public Result<Long> add(@Valid @RequestBody DeviceInfoSaveRequest request) {
- return success(deviceInfoService.insert(request));
- }
-
- /**
- * 新增设备信息
- */
- @PostMapping("addBatch")
- @ApiOperation(value = "批量新增设备信息", position = 10)
- @Log(title = "设备信息", businessType = BusinessType.INSERT)
- public Result<String> addBatch(@Valid @RequestBody DeviceInfoBatchSaveRequest request) {
- deviceInfoService.insert(request);
- return success();
- }
-
- @PostMapping("/parseExcel")
- public Result<List<DeviceInfoImportRequest>> parseExcel(MultipartFile file) throws Exception{
- ExcelUtil<DeviceInfoImportRequest> util = new ExcelUtil<>(DeviceInfoImportRequest.class);
- List<DeviceInfoImportRequest> deviceInfoImportRequestList = util.importExcel(file.getInputStream());
- return success(deviceInfoImportRequestList);
- }
-
- @PostMapping("/importExcel")
- public Result<List<DeviceInfo>> importExcel(MultipartFile file, String projectCode) throws Exception{
- if(null == file){
- throw new ServiceException("请上传文件");
- }
- ExcelUtil<DeviceInfoImportRequest> util = new ExcelUtil<>(DeviceInfoImportRequest.class);
- List<DeviceInfoImportRequest> deviceInfoImportRequestList = util.importExcel(file.getInputStream());
- DeviceInfoBatchSaveRequest batchSaveRequest = new DeviceInfoBatchSaveRequest(projectCode, deviceInfoImportRequestList);
- return success(deviceInfoService.insert(batchSaveRequest));
- }
-
- /**
- * 修改设备信息
- */
- @PutMapping("edit")
- @ApiOperation(value = "修改设备信息", position = 20)
- @Log(title = "设备信息", businessType = BusinessType.UPDATE)
- public Result<Object> edit(@Valid @RequestBody DeviceInfoUpdateRequest request) {
- return success(deviceInfoService.update(request));
- }
-
- /**
- * 删除设备信息
- */
- @DeleteMapping("/{ids}")
- @ApiOperation(value = "删除设备信息", notes = "传入ids(,隔开)", position = 30)
- @Log(title = "设备信息", businessType = BusinessType.DELETE)
- public Result<Object> remove(@PathVariable String ids) {
- return success(deviceInfoService.delete(ids));
- }
-
- /**
- * 详细查询设备信息
- */
- @GetMapping(value = "/{sn}")
- @ApiOperation(value = "详细查询设备信息", position = 40)
- public Result<DeviceInfo> detail(@PathVariable("sn") String sn) {
- return success(deviceInfoService.selectDetail(sn));
- }
-
- /**
- * 分页查询设备信息
- */
- @GetMapping("/page")
- @ApiOperation(value = "分页查询设备信息", position = 50)
- public PageResult<List<DeviceInfo>> page(DeviceInfoQueryRequest request) {
- startPage();
- List<DeviceInfo> list = deviceInfoService.selectPage(request);
- return pageResult(list);
- }
-
- /**
- * 列表查询设备信息
- */
- @GetMapping("/list")
- @ApiOperation(value = "列表查询设备信息", position = 60)
- public Result<List<DeviceInfo>> list(DeviceInfoQueryRequest request) {
- List<DeviceInfo> list = deviceInfoService.selectList(request);
- return success(list);
- }
-
-
- // /**
- // * 列表查询当前用户设备sn信息
- // */
- // @GetMapping("/snList")
- // @ApiOperation(value = "列表查询当前用户设备信息", position = 60)
- // public Result<List<SnDeviceInfo>> snlist(DeviceSnInfoQueryRequest request) {
- // List<SnDeviceInfo> list = deviceInfoService.selectSnList(request);
- // return success(list);
- // }
- //
- //
- // /**
- // * 分页查询当前用户设备sn信息
- // */
- // @GetMapping("/snPage")
- // @ApiOperation(value = "列表查询当前用户设备信息", position = 60)
- // public Result<List<DeviceInfo>> snPage(DeviceInfoQueryRequest request) {
- // startPage();
- // List<DeviceInfo> list = deviceInfoService.selectSnPage(request);
- // return pageResult(list);
- // }
- //
- // /**
- // * SN编号查询监测记录
- // */
- // @GetMapping("/snQuerMonitoryList")
- // @ApiOperation(value = "SN编号查询用户设备监测信息", position = 60)
- // public Result<List<SnDeviceInfo>> snQuerMonitoryList(DeviceInfoQueryRequest request) {
- // List<SnDeviceInfo> list = deviceInfoService.snQuerMonitoryList(request);
- // return success(list);
- //
- // }
-
-
- }