12 lines
461 B
Go
12 lines
461 B
Go
package model
|
|
|
|
// GoldKPITitle 黄金指标标题信息对象 kpi_title
|
|
type GoldKPITitle struct {
|
|
ID string `json:"id" gorm:"column:id;primaryKey;autoIncrement"`
|
|
NeType string `json:"neType" gorm:"column:ne_type"`
|
|
KPIID string `json:"kpiId" gorm:"column:kpi_id"`
|
|
TitleJson string `json:"titleJson" gorm:"column:title_json"`
|
|
CnTitle string `json:"cnTitle" gorm:"column:cn_title"`
|
|
EnTitle string `json:"enTitle" gorm:"column:en_title"`
|
|
}
|