浏览代码

更新

master
huangjiajun 3 周前
父节点
当前提交
7a5aadcb7c
共有 1 个文件被更改,包括 21 次插入2 次删除
  1. +21
    -2
      app/svc/svc_data_center_generate_data.go

+ 21
- 2
app/svc/svc_data_center_generate_data.go 查看文件

@@ -14,6 +14,7 @@ import (
"fmt"
"github.com/gin-gonic/gin"
"github.com/jinzhu/copier"
"strings"
"time"
)

@@ -485,10 +486,28 @@ func comm(c *gin.Context, isTotal int, req md.DataCenterRecordReq) ([]map[string
user := GetUser(c)
mediumId := GetMediumIdStr(c, user.AdmId, "", "")
if mediumId != "" {
where += " and medium_id in('" + mediumId + "')"
ex := strings.Split(mediumId, ",")
str := ""
for _, v := range ex {
if str == "" {
str += "'" + v + "'"
} else {
str += ",'" + v + "'"
}
}
where += " and medium_id in(" + str + ")"
}
if req.AppId != "" || req.Platform != "" {
where += " and app_id in('" + appId + "')"
ex := strings.Split(appId, ",")
str := ""
for _, v := range ex {
if str == "" {
str += "'" + v + "'"
} else {
str += ",'" + v + "'"
}
}
where += " and app_id in(" + str + ")"
}
if req.AdType != "" {
where += " and ad_slot='" + req.AdType + "'"


正在加载...
取消
保存