| | |
| | | |
| | | import com.zt.life.sys.model.SysUserReg; |
| | | import com.zt.life.sys.model.SysUserRegister; |
| | | import com.zt.modules.sys.dto.UserDto; |
| | | import org.apache.shiro.authz.annotation.RequiresPermissions; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | @ApiOperation("返回用户列表") |
| | | @LogOperation("返回用户列表") |
| | | public Result<List<SysUser>> getUsersList() { |
| | | return Result.ok(sysUserService.getUsersList()); |
| | | return Result.ok(sysUserService.getUsersList("","")); |
| | | } |
| | | |
| | | } |