|  |  |  | 
|---|
|  |  |  | import com.doumee.core.annotation.pr.PreventRepeat; | 
|---|
|  |  |  | import com.doumee.core.annotation.trace.Trace; | 
|---|
|  |  |  | import com.doumee.core.constants.OperaType; | 
|---|
|  |  |  | import com.doumee.core.model.ApiResponse; | 
|---|
|  |  |  | import com.doumee.core.model.PageData; | 
|---|
|  |  |  | import com.doumee.core.model.PageWrap; | 
|---|
|  |  |  | import com.doumee.service.business.third.model.ApiResponse; | 
|---|
|  |  |  | import com.doumee.service.business.third.model.PageData; | 
|---|
|  |  |  | import com.doumee.service.business.third.model.PageWrap; | 
|---|
|  |  |  | import com.doumee.core.utils.Constants; | 
|---|
|  |  |  | import com.doumee.dao.system.dto.CreateSystemUserDTO; | 
|---|
|  |  |  | import com.doumee.dao.system.dto.CreateUserRoleDTO; | 
|---|
|  |  |  | 
|---|
|  |  |  | return ApiResponse.success(systemUserService.findPage(pageWrap)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("分页查询司机列表") | 
|---|
|  |  |  | @PostMapping("/pageDriver") | 
|---|
|  |  |  | @CloudRequiredPermission("system:user:query") | 
|---|
|  |  |  | public ApiResponse<PageData<SystemUser>> findDriverPage (@RequestBody PageWrap<SystemUser> pageWrap) { | 
|---|
|  |  |  | return ApiResponse.success(systemUserService.findDriverPage(pageWrap)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("查询所有系统用户") | 
|---|
|  |  |  | @PostMapping("/findAllList") | 
|---|