|
@@ -18,6 +18,7 @@ import org.jeecg.common.util.oConvertUtils;
|
|
|
import org.jeecg.common.system.vo.SelectTreeModel;
|
|
|
import org.jeecg.modules.base.convert.InterlockBaseConvert;
|
|
|
import org.jeecg.modules.base.entity.InterlockBase;
|
|
|
+import org.jeecg.modules.base.entity.InterlockBaseLimit;
|
|
|
import org.jeecg.modules.base.service.IInterlockBaseService;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
@@ -26,6 +27,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
import org.jeecg.modules.base.vo.InterlockBaseTreeVO;
|
|
|
+import org.jeecg.modules.interlockSystemLimit.entity.InterlockSystemLimit;
|
|
|
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
|
import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
|
import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
@@ -344,4 +346,14 @@ public class InterlockBaseController extends JeecgController<InterlockBase, IInt
|
|
|
return super.importExcel(request, response, InterlockBase.class);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 联锁基础表-普通列表查询
|
|
|
+ * 添加用户权限
|
|
|
+ */
|
|
|
+ @ApiOperation("联锁基础表-普通列表查询")
|
|
|
+ @GetMapping(value = "/listByUser")
|
|
|
+ public List<InterlockBaseLimit> listByUser(){
|
|
|
+ return interlockBaseService.listByUser();
|
|
|
+ }
|
|
|
+
|
|
|
}
|