xyxie 1 年之前
父节点
当前提交
72ed529049
共有 2 个文件被更改,包括 8 次插入2 次删除
  1. 7 2
      models/jiayue/dict.go
  2. 1 0
      services/index_data/jiayue_platform.go

+ 7 - 2
models/jiayue/dict.go

@@ -2,6 +2,7 @@ package jiayue
 
 import (
 	"database/sql"
+	"encoding/json"
 	"eta/eta_bridge/global"
 	"fmt"
 )
@@ -148,8 +149,10 @@ func getDictIndex(sqlStatement string, pars []interface{}) (dictIndexs []DictInd
 
 	for i := 0; i < len(strings); i++ {
 		fmt.Print(" ", strings[i])
+		global.LOG.Info(" ", strings[i])
 	}
 	fmt.Print("\n")
+	global.LOG.Info("\n")
 	for rows.Next() {
 		var tmp DictIndexSql
 		err = rows.Scan(&tmp.Id, &tmp.Code, &tmp.Name, &tmp.Unit, &tmp.Frequency, &tmp.Description, &tmp.TableName, &tmp.SourceType, &tmp.SourceCode, &tmp.SourceDescription, &tmp.Industry, &tmp.Type, &tmp.Commodity, &tmp.SjbId, &tmp.UserId, &tmp.RowsCount, &tmp.DateFirst, &tmp.DateLast, &tmp.TimeLastUpdate, &tmp.TimeLastRequest, &tmp.Priority, &tmp.Status, &tmp.ShortName, &tmp.UpdateDescription, &tmp.ForecastFlag, &tmp.ManualFlag, &tmp.VariableFlag, &tmp.MarketDataFlag, &tmp.CreateUser, &tmp.CreateTime, &tmp.UpdateUser, &tmp.UpdateTime)
@@ -201,12 +204,14 @@ func getDictIndex(sqlStatement string, pars []interface{}) (dictIndexs []DictInd
 	}
 	defer stmt.Close()
 
-	/*data, err := json.Marshal(dictIndexs)
+	data, err := json.Marshal(dictIndexs)
 	if err != nil {
 		fmt.Printf("序列化错误 err = %v\n", err)
+		global.LOG.Info("序列化错误 err = %v\n", err)
 	}
 	//输出序列化后的结果 json字符串
-	fmt.Printf("序列化后 = %v\n", string(data))*/
+	fmt.Printf("序列化后 = %v\n", string(data))
+	global.LOG.Info("序列化后 = %v\n", string(data))
 	return
 }
 

+ 1 - 0
services/index_data/jiayue_platform.go

@@ -45,6 +45,7 @@ func GetIndexFromJiaYue(indexCode, source, startDate, endDate string) (data *res
 		return
 	}
 	if len(indexList) <= 0 {
+		global.LOG.Info(indexCode + "指标信息不存在")
 		return
 	}
 	index := indexList[0]