Browse Source

pcsg: 新字段

hsun 8 months ago
parent
commit
5ddd12ffad
1 changed files with 7 additions and 0 deletions
  1. 7 0
      models/pcsg/bloomberg.go

+ 7 - 0
models/pcsg/bloomberg.go

@@ -16,6 +16,9 @@ type PythonBloombergGeneralData struct {
 	PX_VOLUME            *float64 `json:"PX_VOLUME" description:"数据值, 可能为null"`
 	LAST_UPDATE_DATE_EOD string   `json:"LAST_UPDATE_DATE_EOD" description:"数据日期, 可能为null"`
 	DATE                 string   `json:"DATE" description:"数据日期, 可能为null"`
+
+	PX_SETTLE         *float64 `json:"PX_SETTLE" description:"数据值, 可能为null"`
+	PX_SETTLE_LAST_DT string   `json:"PX_SETTLE_LAST_DT" description:"数据日期, 可能为null"`
 }
 
 // PythonBloombergGeneralResult API响应体
@@ -73,6 +76,10 @@ func FormatPythonBloombergGeneralData2Base(origin PythonBloombergGeneralData, fr
 		dataTime, _ = time.ParseInLocation(utils.FormatDate, origin.DATE, time.Local)
 		val = origin.PX_VOLUME
 	}
+	if origin.PX_SETTLE_LAST_DT != "" && origin.PX_SETTLE != nil {
+		dataTime, _ = time.ParseInLocation(utils.FormatDate, origin.PX_SETTLE_LAST_DT, time.Local)
+		val = origin.PX_SETTLE
+	}
 	if !dataTime.IsZero() && val != nil {
 		item.Data = append(item.Data, BaseFromBloombergApiIndexData{
 			DataTime: dataTime,