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.

14 lines
485 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package models
import (
"time"
)
type TDmSubject struct {
SubjectId int64 `xorm:"not null pk autoincr comment('科目ID') index(cdwl_index) INT(11)"`
SubjectName string `xorm:"not null comment('科目名') VARCHAR(30)"`
StageId string `xorm:"not null comment('学段ID关联t_dm_stage表的STAGE_ID。') index(cdwl_index) CHAR(11)"`
SortId int64 `xorm:"not null INT(11)"`
UpdateTs time.Time `xorm:"default 'current_timestamp()' TIMESTAMP"`
}