| | |
| | | import com.ruoyi.account.dto.UserChangeQuery; |
| | | import com.ruoyi.account.service.UserChangeLogService; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | } |
| | | |
| | | @PostMapping("/page") |
| | | @ApiOperation(value = "会员变更记录", tags = {"后台"}) |
| | | public R<IPage<UserChangeLog>> page(@RequestBody UserChangeQuery userChangeLog){ |
| | | |
| | | return R.ok(userChangeLogService.pageList(userChangeLog)); |