Browse Source

update

master
shenjiachi 1 month ago
parent
commit
4a9dbc3e06
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      app/svc/im/svc_send_message.go

+ 3
- 3
app/svc/im/svc_send_message.go View File

@@ -212,7 +212,7 @@ func DealUserMessage(recordID int, req *md.BatchSendUserMessageReq) {
var customerServiceWithUsers []model.CustomerServiceWithUser
err = db.DbIm.Table("user").
Join("INNER", "customer_service", "customer_service.id = user.customer_id").
In("phone", phoneIds).
In("phone_number", phoneIds).
Where("customer_service.state = 1").
Find(&customerServiceWithUsers)
if err != nil {
@@ -260,7 +260,7 @@ func DealUserMessage(recordID int, req *md.BatchSendUserMessageReq) {
var customerServiceWithUsers []model.CustomerServiceWithUser
err = db.DbIm.Table("user").
Join("INNER", "customer_service", "customer_service.id = user.customer_id").
In("phone", tempPhoneList).
In("phone_number", tempPhoneList).
Where("customer_service.state = 1").
Find(&customerServiceWithUsers)
if err != nil {
@@ -323,7 +323,7 @@ func DealUserMessage(recordID int, req *md.BatchSendUserMessageReq) {
var customerServiceWithUsers []model.CustomerServiceWithUser
err = db.DbIm.Table("user").
Join("INNER", "customer_service", "customer_service.id = user.customer_id").
In("phone", phoneIds).
In("phone_number", phoneIds).
Where("customer_service.state = 1").
Find(&customerServiceWithUsers)
for _, customerServiceWithUser := range customerServiceWithUsers {


Loading…
Cancel
Save