| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.common.core.utils.StringUtils; |
| | | import com.ruoyi.common.security.service.TokenService; |
| | | import com.ruoyi.common.security.utils.SecurityUtils; |
| | | import com.ruoyi.system.api.domain.SysUser; |
| | | import com.ruoyi.system.domain.dto.SupplierDTO; |
| | |
| | | public class SysOperlogController extends BaseController |
| | | { |
| | | @Resource |
| | | private TokenService tokenService; |
| | | @Resource |
| | | private SysOperLogMapper operLogService; |
| | | |
| | | @Autowired |
| | |
| | | @PostMapping("/list") |
| | | public R<Page<SysOperLog>> list(@RequestBody SysOperLogQuery gy) |
| | | { |
| | | tokenService.getLoginUser(); |
| | | Page<SysOperLog> page = new Page<>(); |
| | | page.setSize(gy.getPageSize()); |
| | | page.setCurrent(gy.getPageCurr()); |