wangchuanjin преди 9 месеца
родител
ревизия
c4552394a5
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  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)