| File was renamed from drone-service/drone-fw/src/main/java/org/sxkj/fw/fwDevicePerShare/controller/FwDevicePerShareController.java |
| | |
| | | * this software without specific prior written permission. |
| | | * Author: Chill 庄骞 (smallchill@163.com) |
| | | */ |
| | | package org.sxkj.fw.fwDevicePerShare.controller; |
| | | package org.sxkj.fw.device.controller; |
| | | |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | import lombok.AllArgsConstructor; |
| | | import javax.validation.Valid; |
| | | |
| | | import org.springblade.core.secure.BladeUser; |
| | | import org.springblade.core.mp.support.Condition; |
| | | import org.springblade.core.mp.support.Query; |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springblade.core.tool.utils.BeanUtil; |
| | | import org.springblade.core.tool.utils.Func; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.sxkj.fw.fwDevicePerShare.dto.FwDevicePerShareDTO; |
| | | import org.sxkj.fw.fwDevicePerShare.entity.FwDevicePerShareEntity; |
| | | import org.sxkj.fw.fwDevicePerShare.vo.FwDevicePerShareVO; |
| | | import org.sxkj.fw.fwDevicePerShare.excel.FwDevicePerShareExcel; |
| | | import org.sxkj.fw.fwDevicePerShare.wrapper.FwDevicePerShareWrapper; |
| | | import org.sxkj.fw.fwDevicePerShare.service.IFwDevicePerShareService; |
| | | import org.sxkj.fw.device.dto.FwDevicePerShareDTO; |
| | | import org.sxkj.fw.device.entity.FwDevicePerShareEntity; |
| | | import org.sxkj.fw.device.vo.FwDevicePerShareVO; |
| | | import org.sxkj.fw.device.wrapper.FwDevicePerShareWrapper; |
| | | import org.sxkj.fw.device.service.IFwDevicePerShareService; |
| | | import org.springblade.core.boot.ctrl.BladeController; |
| | | import org.springblade.core.tool.utils.DateUtil; |
| | | import org.springblade.core.excel.util.ExcelUtil; |
| | | import org.springblade.core.tool.constant.BladeConstant; |
| | | import springfox.documentation.annotations.ApiIgnore; |
| | | import java.util.Map; |
| | | import java.util.List; |
| | | |
| | | import java.util.Objects; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | /** |
| | | * 设备权限分享表 控制器 |
| | |
| | | */ |
| | | @RestController |
| | | @AllArgsConstructor |
| | | @RequestMapping("fwDevicePerShare/fwDevicePerShare") |
| | | @RequestMapping("device/fwDevicePerShare") |
| | | @Api(value = "设备权限分享表", tags = "设备权限分享表接口") |
| | | public class FwDevicePerShareController extends BladeController { |
| | | |