瀏覽代碼

feat:xiugai

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)