// Package models // @Author gmy 2024/8/7 9:38:00 package models type BaseFromRzdIndex struct { BaseFromRzdIndexId int `orm:"column(base_from_rzd_index_id);pk"` CreateTime string `orm:"column(create_time)"` ModifyTime string `orm:"column(modify_time)"` BaseFromLyClassifyId int `orm:"column(base_from_ly_classify_id)"` IndexCode string `orm:"column(index_code)"` IndexName string `orm:"column(index_name)"` Frequency string `orm:"column(frequency)"` Unit string `orm:"column(unit)"` } type IndexInfo struct { IndexName string IndexCode string Value float64 IndexInfoId int DataTime string }