| | |
| | | package com.ruoyi.account.controller; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.ruoyi.account.api.model.AgentApplication; |
| | | import com.ruoyi.account.api.model.UserChangeLog; |
| | | import com.ruoyi.account.dto.UserChangeQuery; |
| | | import com.ruoyi.account.service.UserChangeLogService; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping("/page") |
| | | public R<IPage<UserChangeLog>> page(@RequestBody UserChangeQuery userChangeLog){ |
| | | |
| | | return R.ok(userChangeLogService.pageList(userChangeLog)); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |