base_from_ly_index.go 898 B

123456789101112131415
  1. // Package models
  2. // @Author gmy 2024/8/7 9:38:00
  3. package models
  4. type BaseFromLyIndex struct {
  5. BaseFromLyIndexId int `orm:"column(base_from_ly_index_id);pk"` // 指标ID
  6. CreateTime string `orm:"column(create_time)"` // 创建时间
  7. ModifyTime string `orm:"column(modify_time)"` // 修改时间
  8. BaseFromLyClassifyId int `orm:"column(base_from_ly_classify_id)"` // 原始数据指标分类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. EdbExist int `orm:"column(edb_exist)"` // 指标库是否已添加:0-否;1-是
  14. }