| 
					
				 | 
			
			
				@@ -66,6 +66,12 @@ public interface SysUserFeignService { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	@ApiOperation(value = "退出登录") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	HttpResponseResult<String> logout(@PathVariable("clientId") String clientId, @PathVariable("phone") String phone); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	@PostMapping(value = "exit/{clientId}/{phone}/{openId}", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	@ApiOperation(value = "指定机构用户退出登录") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	HttpResponseResult<String> exitByPhoneAndOpenId(@PathVariable("clientId") String clientId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+														   @PathVariable("phone") String phone, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+														   @PathVariable("openId") String openId); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	@PostMapping(value = "user/list") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	HttpResponseResult<List<SysUser>> page(@RequestBody SysUserQueryInfo queryInfo); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 |