|  | @ -74,11 +74,13 @@ public class SignController {
 | 
	
		
			
				|  |  | 	@RequestMapping(value = "getSickFamilyDoctorSpecialistControl",method = RequestMethod.POST)
 | 
	
		
			
				|  |  | 	@ApiOperation("查询家签慢病患者定标情况接口")
 | 
	
		
			
				|  |  | 	public Result getSickFamilyDoctorSpecialistControl(
 | 
	
		
			
				|  |  | 			@ApiParam(name="jwTeamCode",value="智业行政团队code",defaultValue = "44")
 | 
	
		
			
				|  |  | 			@RequestParam(value="jwTeamCode",required = true) String jwTeamCode){
 | 
	
		
			
				|  |  | 			@ApiParam(name="TIME_START",value="修改的开始时间",defaultValue = "2016-9-1 00:00:00")
 | 
	
		
			
				|  |  | 			@RequestParam(value="TIME_START",required = true) String TIME_START,
 | 
	
		
			
				|  |  | 			@ApiParam(name="TIME_END",value="修改的开始时间",defaultValue = "2016-9-1 12:00:00")
 | 
	
		
			
				|  |  | 			@RequestParam(value="TIME_END",required = true) String TIME_END){
 | 
	
		
			
				|  |  | 		try {
 | 
	
		
			
				|  |  | 			String response = signZYService.getSickFamilyDoctorSignLimit(jwTeamCode);
 | 
	
		
			
				|  |  | 			return Result.success("查询签约成功!",response);
 | 
	
		
			
				|  |  | 			String response = signZYService.getSickFamilyDoctorSpecialistControl(TIME_START,TIME_END);
 | 
	
		
			
				|  |  | 			return Result.success("查询签约成功!","");
 | 
	
		
			
				|  |  | 		} catch (Exception ex) {
 | 
	
		
			
				|  |  | 			ex.printStackTrace();
 | 
	
		
			
				|  |  | 			if(ex instanceof ApiException)
 |