This commit is contained in:
邹宗楠
2024-07-17 17:28:01 +08:00
parent d4bc6f1946
commit 379159f014
2 changed files with 4 additions and 2 deletions

View File

@@ -13,8 +13,8 @@ func GetBadCommentOrderId(jxStoreId int, startTime, endTime time.Time, foodNameL
order_sku_financial WHERE jx_store_id = ? AND created_at >= ? AND created_at <= ? AND name IN (` + dao.GenQuestionMarks(len(foodNameList)) + `)" GROUP BY vendor_order_id LIMIT 0, 1000`
sqlParams = append(sqlParams, []interface{}{
jxStoreId,
startTime,
endTime,
startTime,
foodNameList,
})