You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
487 B
16 lines
487 B
package entity
|
|
|
|
type WorldResultSet struct {
|
|
Id uint `gorm:"column:id;primaryKey;autoIncrement"`
|
|
KeyWordId int `gorm:"column:keyWordId"`
|
|
WordText string `gorm:"column:wordText"`
|
|
SrtId int `gorm:"column:srtId"`
|
|
SrtOrdinal int `gorm:"column:srtOrdinal"`
|
|
SrtText string `gorm:"column:srtText"`
|
|
VideoId string `gorm:"column:videoId"`
|
|
}
|
|
|
|
// TableName 设置 WorldResultSet 表名
|
|
func (WorldResultSet) TableName() string {
|
|
return "World_Result_Set"
|
|
}
|
|
|