Browse Source

汾渭-网站响应格式变更

gmy 3 months ago
parent
commit
c08beaf12f
2 changed files with 8 additions and 2 deletions
  1. 1 1
      models/base_from_fenwei.go
  2. 7 1
      services/fenwei/processor_business_logic.go

+ 1 - 1
models/base_from_fenwei.go

@@ -97,7 +97,7 @@ type FenWeiNetResponse struct {
 	MonthlyAccumulationChnUnit string      `json:"monthly_accumulation_chn_unit"`
 	PortName                   string      `json:"port_name"`
 	PortSonName                string      `json:"port_son_name"`
-	Stock                      float64     `json:"stock"`
+	Stock                      interface{} `json:"stock"`
 	StockChnName               string      `json:"stock_chn_name"`
 	StockChnUnit               string      `json:"stock_chn_unit"`
 	CoalTypeName               string      `json:"coal_type_name"`

+ 7 - 1
services/fenwei/processor_business_logic.go

@@ -7,6 +7,7 @@ import (
 	"eta/eta_data_analysis/models"
 	"eta/eta_data_analysis/utils"
 	"fmt"
+	"strconv"
 	"strings"
 )
 
@@ -873,7 +874,12 @@ func (p *CokeInventoryProcessor) ProcessResponse(data string) ([]models.FenWeiNe
 			if data.InventoryIndex != 0 {
 				value = data.InventoryIndex
 			} else {
-				value = data.Stock
+				switch v := data.Stock.(type) {
+				case string:
+					value, _ = strconv.ParseFloat(v, 64)
+				case float64:
+					value = float64(v)
+				}
 			}
 
 			indexInfoList = append(indexInfoList, models.FenWeiNetIndexInfo{