|
@@ -149,6 +149,19 @@ public class InterlockLoginConfigController extends JeecgController<InterlockLog
|
|
|
return Result.OK(interlockLoginConfig);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询定义的配置信息
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ //@AutoLog(value = "联锁登陆页配置表-查询定义的配置信息")
|
|
|
+ @ApiOperation(value="联锁登陆页配置表-查询定义的配置信息", notes="联锁登陆页配置表-查询定义的配置信息")
|
|
|
+ @GetMapping(value = "/queryLoginConfig")
|
|
|
+ public Result<List<InterlockLoginConfig>> queryPageList() {
|
|
|
+ List<InterlockLoginConfig> pageList = interlockLoginConfigService.queryPageList("0");
|
|
|
+ return Result.OK(pageList);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 导出excel
|
|
|
*
|