|
@@ -10,6 +10,7 @@ import (
|
|
|
"fmt"
|
|
|
"github.com/gogf/gf/v2/util/gconv"
|
|
|
"github.com/shopspring/decimal"
|
|
|
+ "github.com/zeromicro/go-zero/core/logx"
|
|
|
"strconv"
|
|
|
"strings"
|
|
|
)
|
|
@@ -79,6 +80,8 @@ func GetProjectList(req *types.ProjectListReq) (resultList []*ProjectEntry, hasN
|
|
|
isSqlPage = true // 是否sql分页
|
|
|
}
|
|
|
countSql, findSql := getQuerySql(req, isSqlPage, buyerArr, plist)
|
|
|
+ logx.Info("countSql: ", countSql)
|
|
|
+ logx.Info("findSql: ", findSql)
|
|
|
rows, err := T.ClickhouseConn.Query(context.TODO(), findSql)
|
|
|
defer rows.Close()
|
|
|
if err != nil {
|