base_from_rzd_index.go 696 B

12345678910111213141516171819202122
  1. // Package models
  2. // @Author gmy 2024/8/7 9:38:00
  3. package models
  4. type BaseFromRzdIndex struct {
  5. BaseFromRzdIndexId int `orm:"column(base_from_rzd_index_id);pk"`
  6. CreateTime string `orm:"column(create_time)"`
  7. ModifyTime string `orm:"column(modify_time)"`
  8. BaseFromLyClassifyId int `orm:"column(base_from_ly_classify_id)"`
  9. IndexCode string `orm:"column(index_code)"`
  10. IndexName string `orm:"column(index_name)"`
  11. Frequency string `orm:"column(frequency)"`
  12. Unit string `orm:"column(unit)"`
  13. }
  14. type IndexInfo struct {
  15. IndexName string
  16. IndexCode string
  17. Value float64
  18. IndexInfoId int
  19. DataTime string
  20. }