Eric 2 years ago
parent
commit
a81555090f

+ 2 - 0
cooleshow-user/user-admin/src/main/java/com/yonge/cooleshow/admin/io/request/im/CustomerServiceBatchSendingVo.java

@@ -87,6 +87,8 @@ public class CustomerServiceBatchSendingVo {
 
         @ApiModelProperty("客服人员")
         private String sender;
+        @ApiModelProperty("客服联系方式")
+        private String mobile;
 
         @ApiModelProperty("目标人群")
         private List<CustomerServiceReceiveVo.CustomerServiceReceive> receives;

+ 1 - 1
cooleshow-user/user-biz/src/main/java/com/yonge/cooleshow/biz/dal/service/impl/CustomerServiceBatchSendingServiceImpl.java

@@ -208,7 +208,7 @@ public class CustomerServiceBatchSendingServiceImpl extends ServiceImpl<Customer
     public Boolean add(CustomerServiceBatchSendingWrapper.CustomerServiceBatchSending info) {
 
         // 发送客服ID
-        String customerService = info.getSender();
+        String customerService = info.getMobile();
         if (StringUtils.isBlank(customerService)) {
             customerService = customerServiceConfig.getCustomerService();
         }