// Package models
// @Author gmy 2024/8/7 9:38:00
package models

type BaseFromLyIndex struct {
	BaseFromLyIndexId    int    `orm:"column(base_from_ly_index_id);pk"` // 指标ID
	CreateTime           string `orm:"column(create_time)"`              // 创建时间
	ModifyTime           string `orm:"column(modify_time)"`              // 修改时间
	BaseFromLyClassifyId int    `orm:"column(base_from_ly_classify_id)"` // 原始数据指标分类id
	IndexCode            string `orm:"column(index_code)"`               // 指标编码
	IndexName            string `orm:"column(index_name)"`               // 指标名称
	Frequency            string `orm:"column(frequency)"`                // 频度
	Unit                 string `orm:"column(unit)"`                     // 单位
	EdbExist             int    `orm:"column(edb_exist)"`                // 指标库是否已添加:0-否;1-是
}