/* * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * Neither the name of the dreamlu.net developer nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * Author: Chill 庄骞 (smallchill@163.com) */ package org.sxkj.gd.workorder.controller; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import lombok.AllArgsConstructor; import org.springblade.core.boot.ctrl.BladeController; import org.springblade.core.excel.util.ExcelUtil; import org.springblade.core.mp.support.Condition; import org.springblade.core.mp.support.Query; import org.springblade.core.secure.BladeUser; import org.springblade.core.tool.api.R; import org.springblade.core.tool.constant.BladeConstant; import org.springblade.core.tool.utils.DateUtil; import org.springblade.core.tool.utils.Func; import org.springblade.core.tool.utils.StringUtil; import org.springframework.web.bind.annotation.*; import org.sxkj.gd.common.GenericConverter; import org.sxkj.gd.common.IdParam; import org.sxkj.gd.workorder.dto.GdManageDeviceDTO; import org.sxkj.gd.workorder.entity.GdManageDeviceEntity; import org.sxkj.gd.workorder.excel.GdManageDeviceExcel; import org.sxkj.gd.workorder.param.GdManageDevicePageParam; import org.sxkj.gd.workorder.service.IGdManageDeviceService; import org.sxkj.gd.workorder.vo.GdManageDeviceVO; import org.sxkj.gd.workorder.wrapper.GdManageDeviceWrapper; import springfox.documentation.annotations.ApiIgnore; import javax.servlet.http.HttpServletResponse; import javax.validation.Valid; import java.util.List; import java.util.Map; /** * 设备信息 控制器 * * @author lw * @since 2026-01-14 */ @RestController @AllArgsConstructor @RequestMapping("workOrder/gdManageDevice") @Api(value = "设备信息", tags = "设备信息接口") public class GdManageDeviceController extends BladeController { private final IGdManageDeviceService gdManageDeviceService; /** * 设备信息 详情 */ @GetMapping("/detail") @ApiOperationSupport(order = 1) @ApiOperation(value = "详情", notes = "传入gdManageDevice") public R detail(@Valid IdParam manageDevice) { GdManageDeviceEntity detail = gdManageDeviceService.getOne(Condition.getQueryWrapper(GenericConverter.convert(manageDevice, GdManageDeviceEntity.class))); if (detail == null) { return R.fail("该设备不存在"); } return R.data(GdManageDeviceWrapper.build().entityVO(detail)); } /** * 设备信息 自定义分页 */ @GetMapping("/list") @ApiOperationSupport(order = 3) @ApiOperation(value = "不分页", notes = "传入gdManageDevice") public R> page(GdManageDevicePageParam gdManageDevice) { List pages = gdManageDeviceService.selectGdManageDevice(gdManageDevice); return R.data(pages); } /** * 设备信息 自定义分页 */ @GetMapping("/page") @ApiOperationSupport(order = 3) @ApiOperation(value = "分页", notes = "传入gdManageDevice") public R> page(GdManageDevicePageParam gdManageDevice, Query query) { IPage pages = gdManageDeviceService.selectGdManageDevicePage(Condition.getPage(query), gdManageDevice); return R.data(pages); } /** * 设备信息 新增或修改(对外) */ @PostMapping("/submitExternal") @ApiOperationSupport(order = 6) @ApiOperation(value = "新增或修改", notes = "传入gdManageDevice,设备编码相同则修改") public R submitExternal(@Valid @RequestBody GdManageDeviceDTO gdManageDevice) throws Exception { if (StringUtil.isBlank(gdManageDevice.getDeviceSn())) { return R.fail("设备编码不能为空"); } QueryWrapper queryWrapper = new QueryWrapper<>(); queryWrapper.lambda().eq(GdManageDeviceEntity::getDeviceSn, gdManageDevice.getDeviceSn()); GdManageDeviceEntity detail = gdManageDeviceService.getOne(queryWrapper); if (detail != null) { gdManageDevice.setId(detail.getId()); } return R.status(gdManageDeviceService.saveOrUpdateDevice(GdManageDeviceWrapper.build().entityDTO(gdManageDevice))); } /** * 设备信息 删除 */ @PostMapping("/remove") @ApiOperationSupport(order = 7) @ApiOperation(value = "逻辑删除", notes = "传入ids") public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { return R.status(gdManageDeviceService.deleteLogic(Func.toLongList(ids))); } /** * 同步星图设备(测试接口) */ @PostMapping("/sync-xingtu") @ApiOperationSupport(order = 8) @ApiOperation(value = "同步星图设备(测试)", notes = "同步无人机和机巢到设备表") public R syncXingtuDevice() throws Exception { int count = gdManageDeviceService.syncXingtuDevice(); return R.data(count); } /** * 导出数据 */ @GetMapping("/export-gdManageDevice") @ApiOperationSupport(order = 9) @ApiIgnore @ApiOperation(value = "导出数据", notes = "传入gdManageDevice") public void exportGdManageDevice(@ApiIgnore @RequestParam Map gdManageDevice, BladeUser bladeUser, HttpServletResponse response) { QueryWrapper queryWrapper = Condition.getQueryWrapper(gdManageDevice, GdManageDeviceEntity.class); //if (!AuthUtil.isAdministrator()) { // queryWrapper.lambda().eq(GdManageDevice::getTenantId, bladeUser.getTenantId()); //} queryWrapper.lambda().eq(GdManageDeviceEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); List list = gdManageDeviceService.exportGdManageDevice(queryWrapper); ExcelUtil.export(response, "设备信息数据" + DateUtil.time(), "设备信息数据表", list, GdManageDeviceExcel.class); } }