|  |  |  | @ -3,6 +3,7 @@ package com.glxp.api.controller.basic; | 
			
		
	
		
			
				
					|  |  |  |  | import com.github.pagehelper.PageInfo; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.common.res.BaseResponse; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.common.util.ResultVOUtils; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.controller.BaseController; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.entity.basic.BasicCollectPointEntity; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.entity.basic.BasicCollectUserEntity; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.req.basic.BasicCollectRequest; | 
			
		
	
	
		
			
				
					|  |  |  | @ -28,13 +29,16 @@ import java.util.List; | 
			
		
	
		
			
				
					|  |  |  |  |  */ | 
			
		
	
		
			
				
					|  |  |  |  | @Slf4j | 
			
		
	
		
			
				
					|  |  |  |  | @RestController | 
			
		
	
		
			
				
					|  |  |  |  | public class BasicCollectUserController { | 
			
		
	
		
			
				
					|  |  |  |  | public class BasicCollectUserController extends BaseController { | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     @Resource | 
			
		
	
		
			
				
					|  |  |  |  |     private BasicCollectUserService basicCollectUserService; | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     @GetMapping("/udiwms/sysWorkplace/getUserBindWork") | 
			
		
	
		
			
				
					|  |  |  |  |     public BaseResponse getUserBindWork(BasicCollectUserRequest request) { | 
			
		
	
		
			
				
					|  |  |  |  |         if (request != null && request.getAutoUserId() != null && request.getAutoUserId() == 1){ | 
			
		
	
		
			
				
					|  |  |  |  |             request.setUserId(String.valueOf(getUserId())); | 
			
		
	
		
			
				
					|  |  |  |  |         } | 
			
		
	
		
			
				
					|  |  |  |  |         List<UserWorkResponse> page = basicCollectUserService.filterList(request); | 
			
		
	
		
			
				
					|  |  |  |  |         PageInfo<UserWorkResponse> pageInfo = new PageInfo<>(page); | 
			
		
	
		
			
				
					|  |  |  |  |         PageSimpleResponse<UserWorkResponse> pageSimpleResponse = new PageSimpleResponse<>(); | 
			
		
	
	
		
			
				
					|  |  |  | 
 |