|
@@ -5,26 +5,26 @@ package data_manage
|
|
|
import "github.com/beego/beego/v2/client/orm"
|
|
|
|
|
|
type BaseFromLyClassify struct {
|
|
|
- BaseFromLyClassifyId int `orm:"column(base_from_ly_classify_id);pk"` // 分类ID
|
|
|
- CreateTime string `orm:"column(create_time)"` // 创建时间
|
|
|
- ModifyTime string `orm:"column(modify_time)"` // 修改时间
|
|
|
- ClassifyName string `orm:"column(classify_name)"` // 分类名称
|
|
|
- ParentId int `orm:"column(parent_id)"` // 上级id
|
|
|
- Sort int `orm:"column(sort)"` // 排序字段,越小越靠前
|
|
|
- ClassifyNameEn string `orm:"column(classify_name_en)"` // 英文分类名称
|
|
|
+ BaseFromLyClassifyId int `orm:"column(base_from_ly_classify_id);pk" description:"分类ID"`
|
|
|
+ CreateTime string `orm:"column(create_time)" description:"创建时间"`
|
|
|
+ ModifyTime string `orm:"column(modify_time)" description:"修改时间"`
|
|
|
+ ClassifyName string `orm:"column(classify_name)" description:"分类名称"`
|
|
|
+ ParentId int `orm:"column(parent_id)" description:"上级id"`
|
|
|
+ Sort int `orm:"column(sort)" description:"排序字段,越小越靠前"`
|
|
|
+ ClassifyNameEn string `orm:"column(classify_name_en)" description:"英文分类名称"`
|
|
|
}
|
|
|
|
|
|
type BaseFromLyClassifyAndIndexInfo struct {
|
|
|
- BaseFromLyClassifyId int `orm:"column(base_from_ly_classify_id);pk"` // 分类ID
|
|
|
- CreateTime string `orm:"column(create_time)"` // 创建时间
|
|
|
- ModifyTime string `orm:"column(modify_time)"` // 修改时间
|
|
|
- ClassifyName string `orm:"column(classify_name)"` // 分类名称
|
|
|
- ParentId int `orm:"column(parent_id)"` // 上级id
|
|
|
- Sort int `orm:"column(sort)"` // 排序字段,越小越靠前
|
|
|
- ClassifyNameEn string `orm:"column(classify_name_en)"` // 英文分类名称
|
|
|
- IndexId int `orm:"column(base_from_ly_index_id)"` // 指标id
|
|
|
- IndexCode string `orm:"column(index_code)"` // 指标编码
|
|
|
- IndexName string `orm:"column(index_name)"` // 指标名称
|
|
|
+ BaseFromLyClassifyId int `orm:"column(base_from_ly_classify_id);pk" description:"分类ID"`
|
|
|
+ CreateTime string `orm:"column(create_time)" description:"创建时间"`
|
|
|
+ ModifyTime string `orm:"column(modify_time)" description:"修改时间"`
|
|
|
+ ClassifyName string `orm:"column(classify_name)" description:"分类名称"`
|
|
|
+ ParentId int `orm:"column(parent_id)" description:"上级id"`
|
|
|
+ Sort int `orm:"column(sort)" description:"排序字段,越小越靠前"`
|
|
|
+ ClassifyNameEn string `orm:"column(classify_name_en)" description:"英文分类名称"`
|
|
|
+ IndexId int `orm:"column(base_from_ly_index_id)" description:"指标id"`
|
|
|
+ IndexCode string `orm:"column(index_code)" description:"指标编码"`
|
|
|
+ IndexName string `orm:"column(index_name)" description:"指标名称"`
|
|
|
}
|
|
|
|
|
|
func init() {
|