|  | @@ -190,7 +190,10 @@ public class CustomerServiceBatchSendingServiceImpl extends ServiceImpl<Customer
 | 
	
		
			
				|  |  |      public Boolean add(CustomerServiceBatchSendingWrapper.CustomerServiceBatchSending info) {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          // 发送客服ID
 | 
	
		
			
				|  |  | -        String customerService = customerServiceConfig.getCustomerService();
 | 
	
		
			
				|  |  | +        String customerService = info.getSender();
 | 
	
		
			
				|  |  | +        if (StringUtils.isBlank(customerService)) {
 | 
	
		
			
				|  |  | +            customerService = customerServiceConfig.getCustomerService();
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  |          if (StringUtils.isNotEmpty(customerService)) {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |              List<String> collect = Arrays.stream(customerService.split(",")).collect(Collectors.toList());
 |