|
|
@@ -66,3 +66,26 @@ func (g GenerateWxAdDataDb) FindGenerateWxAdDataList(uuid, appId, slotId, startD |
|
|
|
} |
|
|
|
return |
|
|
|
} |
|
|
|
func (g GenerateWxAdDataDb) FindGenerateWxAdDataListMedium(uuid, appId, slotId, startDate, endDate string, page, limit int) (list []model.GenerateWxAdData, total int64, err error) { |
|
|
|
sess := g.Db.Where("is_generate_report=1").OrderBy("date desc,id desc").Limit(limit, (page-1)*limit) |
|
|
|
if uuid != "" { |
|
|
|
sess.And("uuid = ?", uuid) |
|
|
|
} |
|
|
|
if startDate != "" { |
|
|
|
sess.And("date>=", startDate) |
|
|
|
} |
|
|
|
if endDate != "" { |
|
|
|
sess.And("date<=", endDate) |
|
|
|
} |
|
|
|
if appId != "" { |
|
|
|
sess.In("app_id", strings.Split(appId, ",")) |
|
|
|
} |
|
|
|
if slotId != "" { |
|
|
|
sess.In("slot_id", strings.Split(slotId, ",")) |
|
|
|
} |
|
|
|
total, err = sess.FindAndCount(&list) |
|
|
|
if err != nil { |
|
|
|
return nil, 0, err |
|
|
|
} |
|
|
|
return |
|
|
|
} |