diff --git a/business/model/dao/dao_order.go b/business/model/dao/dao_order.go index 052647be2..280b54955 100644 --- a/business/model/dao/dao_order.go +++ b/business/model/dao/dao_order.go @@ -1,7 +1,6 @@ package dao import ( - "fmt" "time" "git.rosy.net.cn/baseapi/utils" @@ -448,8 +447,6 @@ func GetManageStatistics(db *DaoDB, cityCodes []int, jobTime time.Time, jobIDs [ sql += ` ) t5 ` - fmt.Println(sql) - fmt.Println(sqlParams) err = GetRow(db, &getManageStatisticsResult, sql, sqlParams) getManageStatisticsResult.Date = jobTime getManageStatisticsResult.InversionRate = float64(getManageStatisticsResult.FinishCount) / float64(getManageStatisticsResult.BrowseCount)