|  | @@ -12,6 +12,7 @@ import org.apache.commons.io.FileUtils;
 | 
	
		
			
				|  |  |  import org.apache.commons.io.IOUtils;
 | 
	
		
			
				|  |  |  import org.apache.commons.lang3.StringUtils;
 | 
	
		
			
				|  |  |  import org.springframework.core.io.Resource;
 | 
	
		
			
				|  |  | +import org.springframework.web.bind.annotation.GetMapping;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.PostMapping;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.RequestMapping;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.RestController;
 | 
	
	
		
			
				|  | @@ -74,5 +75,11 @@ public class AdapayController extends BaseController {
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    @ApiOperation("查询企业用户信息")
 | 
	
		
			
				|  |  | +    @GetMapping(value = "getMemberInfo")
 | 
	
		
			
				|  |  | +    public HttpResponseResult getMemberInfo(String memberId) throws Exception {
 | 
	
		
			
				|  |  | +        return succeed(new CorpMember().executeQueryMember(memberId));
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  }
 |