base_from_rzd_data.go 370 B

123456789101112131415161718
  1. // @Author gmy 2024/8/7 9:50:00
  2. package models
  3. type BaseFromRzdData struct {
  4. BaseFromRzdDataId int
  5. BaseFromRzdIndexId int
  6. DataTime string
  7. IndexCode string
  8. Value float64
  9. }
  10. type RzdIndexData struct {
  11. BaseFromRzdDataId int
  12. BaseFromRzdIndexId int
  13. DataTime string
  14. IndexCode string
  15. Value float64
  16. }