| | |
| | | import com.mzl.flower.dto.request.system.UpdateUserDTO; |
| | | import com.mzl.flower.dto.response.system.UserDetailsDTO; |
| | | import com.mzl.flower.dto.response.system.UserListDTO; |
| | | import com.mzl.flower.dto.response.system.UserListInfoDTO; |
| | | import com.mzl.flower.service.system.UserService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | |
| | | return returnData(R.SUCCESS.getCode(), null); |
| | | } |
| | | |
| | | @GetMapping("/user/list") |
| | | @ApiOperation(value = "查询用户列表") |
| | | public ResponseEntity<ReturnDataDTO<Page<UserListInfoDTO>>> searchAllUser(@ModelAttribute SearchUserDTO dto, Page page) { |
| | | return returnData(R.SUCCESS.getCode(), userService.searchUserInfos(dto, page)); |
| | | } |
| | | |
| | | } |