package org.jeecg.modules.system.controller;
|
|
import lombok.extern.slf4j.Slf4j;
|
import org.jeecg.common.api.vo.Result;
|
import org.jeecg.common.system.api.ISysBaseAPI;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* 工作流查询
|
* 查询系统信息
|
* @author czm
|
* @date 2021/8/17 16:24
|
*/
|
@RestController
|
@Slf4j
|
@RequestMapping("/actSystem")
|
public class SystemController {
|
|
@Autowired
|
private ISysBaseAPI iSysBaseAPI;
|
|
/**
|
* 查询当前系统的用户
|
*/
|
public Result getSysUserList(String keyword,Integer page,Integer limit){
|
|
return Result.OK();
|
}
|
|
}
|