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
|
|
|
|
type TBaseGraduation struct {
|
|
Id int64 `xorm:"not null pk autoincr INT(11)"`
|
|
FinishYear int64 `xorm:"not null comment('哪一年的毕业处理过了?') INT(255)"`
|
|
}
|