- package models
- type BaseFromLyIndex struct {
- BaseFromLyIndexId int `orm:"column(base_from_ly_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)"`
- EdbExist int `orm:"column(edb_exist)"`
- }
|