Browse Source

feat:xiugai

wangchuanjin 9 months ago
parent
commit
c4552394a5
1 changed files with 2 additions and 0 deletions
  1. 2 0
      api/internal/service/owner.go

+ 2 - 0
api/internal/service/owner.go

@@ -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)