|
@@ -828,10 +828,12 @@ func PersonFindConnectionsHandle(positionId int64, bps []BuyerProject, contactCo
|
|
|
// 供应商
|
|
|
func SupplierFindConnectionsHandle(sqlStr string, args ...interface{}) []SupplierConnectionsEntity {
|
|
|
returnData := []SupplierConnectionsEntity{}
|
|
|
+ logx.Info("SupplierFindConnectionsHandle start 。。。", sqlStr, args)
|
|
|
rows, err := ClickhouseConn.Query(context.Background(), sqlStr, args...)
|
|
|
if err != nil {
|
|
|
logx.Error("查询失败", sqlStr, err)
|
|
|
}
|
|
|
+ logx.Info("SupplierFindConnectionsHandle over 。。。")
|
|
|
for rows.Next() {
|
|
|
data := SupplierConnectionsEntity{}
|
|
|
err = rows.ScanStruct(&data)
|