|  | @@ -136,6 +136,20 @@ public class ActivityController extends BaseController {
 | 
	
		
			
				|  |  |          JSONObject jsonObject = JSONObject.parseObject(configValue);
 | 
	
		
			
				|  |  |          return succeed(jsonObject.getJSONObject("musical"));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  | +    @ApiOperation("校验用户分部是否参与活动")
 | 
	
		
			
				|  |  | +    @PostMapping(value = "/checkActivityOrgan")
 | 
	
		
			
				|  |  | +    @AuditLogAnnotation(operateName = "校验用户分部是否参与活动")
 | 
	
		
			
				|  |  | +    public HttpResponseResult<Boolean> checkActivityOrgan(){
 | 
	
		
			
				|  |  | +        String configValue = sysConfigDao.findConfigValue("2023_activity_organ");
 | 
	
		
			
				|  |  | +        if (StringUtils.isEmpty(configValue)) {
 | 
	
		
			
				|  |  | +            return succeed(true);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        SysUser user = sysUserService.getUser();
 | 
	
		
			
				|  |  | +        if(configValue.contains(user.getOrganId().toString())){
 | 
	
		
			
				|  |  | +            return succeed(true);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        return succeed(false);
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiOperation(value = "学员已购买的双十一活动信息")
 |