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.
|
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type TDmSchoollevel struct {
|
|
LevelId int64 `xorm:"not null pk comment('隶属关系id') INT(11)"`
|
|
LevelName string `xorm:"not null comment('隶属关系名称') VARCHAR(255)"`
|
|
UpdateTs time.Time `xorm:"not null default 'current_timestamp()' comment('更新时间戳') DATETIME"`
|
|
}
|