|  | @@ -15,6 +15,7 @@ import org.springframework.beans.factory.annotation.Autowired;
 | 
	
		
			
				|  |  |  import org.springframework.security.access.prepost.PreAuthorize;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.*;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +import java.time.LocalDate;
 | 
	
		
			
				|  |  |  import java.util.Set;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  @RequestMapping("musicGroup")
 | 
	
	
		
			
				|  | @@ -82,10 +83,14 @@ public class MusicGroupController extends BaseController {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiOperation(value = "开启乐团缴费功能")
 | 
	
		
			
				|  |  |      @PostMapping("/openPay")
 | 
	
		
			
				|  |  | -    @PreAuthorize("@pcs.hasPermissions('musicGroup/openPay')")
 | 
	
		
			
				|  |  | -    @ApiImplicitParams({@ApiImplicitParam(name = "musicGroupId", value = "乐团编号", required = true, dataType = "String")})
 | 
	
		
			
				|  |  | -    public Object openPay(String musicGroupId) {
 | 
	
		
			
				|  |  | -        return succeed(musicGroupService.openPay(musicGroupId));
 | 
	
		
			
				|  |  | +    //@PreAuthorize("@pcs.hasPermissions('musicGroup/openPay')")
 | 
	
		
			
				|  |  | +    @ApiImplicitParams({
 | 
	
		
			
				|  |  | +            @ApiImplicitParam(name = "musicGroupId", value = "乐团编号", required = true, dataType = "String"),
 | 
	
		
			
				|  |  | +            @ApiImplicitParam(name = "expireDate", value = "截止缴费日期", required = true, dataType = "String")
 | 
	
		
			
				|  |  | +    })
 | 
	
		
			
				|  |  | +    public Object openPay(String musicGroupId, String expireDate) {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        return succeed(musicGroupService.openPay(musicGroupId,expireDate));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  }
 |