From b87260f34f9e005176cf1285c4675ba0f98d21f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Mon, 7 Dec 2020 09:10:15 +0800 Subject: [PATCH] aa --- business/model/dao/dao_order.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/business/model/dao/dao_order.go b/business/model/dao/dao_order.go index eb364cccb..52b5604c8 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" @@ -37,8 +36,6 @@ func GetDeliveryOrdersNoPage(db *DaoDB, userIDs []string, statuss []int, fromTim sql += ` AND a.created_at <= ?` sqlParams = append(sqlParams, toTime) } - fmt.Println(sql) - fmt.Println(sqlParams) err = GetRows(db, &dOrders, sql, sqlParams) return dOrders, err }