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.
13 lines
371 B
13 lines
371 B
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type TDmStudentSource struct {
|
|
SourceId int64 `xorm:"not null pk INT(11)"`
|
|
SourceName string `xorm:"default 'NULL' VARCHAR(32)"`
|
|
UpdateTs time.Time `xorm:"not null default 'current_timestamp()' comment('时间戳') TIMESTAMP"`
|
|
IdInt int64 `xorm:"not null autoincr comment('整数主键') unique INT(11)"`
|
|
}
|