|
|
@@ -3,7 +3,9 @@ package service |
|
|
|
import ( |
|
|
|
jg_push "code.fnuoos.com/go_rely_warehouse/zyos_go_jg_push.git/hdl" |
|
|
|
md2 "code.fnuoos.com/go_rely_warehouse/zyos_go_jg_push.git/md" |
|
|
|
"fmt" |
|
|
|
"gim/internal/business/comm/db" |
|
|
|
svc "gim/internal/business/comm/service" |
|
|
|
md3 "gim/internal/logic/domain/message/md" |
|
|
|
"gim/pkg/logger" |
|
|
|
"go.uber.org/zap" |
|
|
@@ -34,7 +36,8 @@ func CommAddPush(args md3.PushParams) { |
|
|
|
zap.String("reason", args.Memo), |
|
|
|
zap.String("times", args.Times), |
|
|
|
) |
|
|
|
pushPlatform := db.DbSysCfg.SysCfgFindWithDb(args.MasterId, "app_push_platform")["app_push_platform"] |
|
|
|
pushPlatform := svc.SysCfgGet(args.MasterId, "app_push_platform") |
|
|
|
fmt.Println(">>>>>>>>>>>>>>>>>>>>pushPlatform<<<<<<<<<<<<<<<<<<<<<<", pushPlatform) |
|
|
|
if pushPlatform == "JgPush" { //极光 |
|
|
|
args.Content = getChangeContent(args, args.Content) |
|
|
|
JgPush(args) |
|
|
|