feat: kpi指标标题管理接口
This commit is contained in:
@@ -2,12 +2,13 @@ package model
|
||||
|
||||
// KpiTitle 指标标题信息对象 kpi_title
|
||||
type KpiTitle struct {
|
||||
ID int64 `json:"id" gorm:"column:id;primaryKey;autoIncrement"`
|
||||
NeType string `json:"neType" gorm:"column:ne_type"` // 网元类型
|
||||
KpiId string `json:"kpiId" gorm:"column:kpi_id"` // KPI标识
|
||||
TitleJson string `json:"titleJson" gorm:"column:title_json"`
|
||||
CnTitle string `json:"cnTitle" gorm:"column:cn_title"` // 中文名
|
||||
EnTitle string `json:"enTitle" gorm:"column:en_title"` // 英文名
|
||||
ID int64 `json:"id" gorm:"column:id;primaryKey;autoIncrement"`
|
||||
NeType string `json:"neType" gorm:"column:ne_type"` // 网元类型
|
||||
KpiId string `json:"kpiId" gorm:"column:kpi_id"` // KPI标识
|
||||
TitleJson string `json:"titleJson" gorm:"column:title_json"`
|
||||
CnTitle string `json:"cnTitle" gorm:"column:cn_title"` // 中文名
|
||||
EnTitle string `json:"enTitle" gorm:"column:en_title"` // 英文名
|
||||
StatusFlag string `json:"statusFlag" gorm:"column:status_flag"` // 状态标识 1:启用 0:禁用
|
||||
}
|
||||
|
||||
// TableName 表名称
|
||||
|
||||
Reference in New Issue
Block a user