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
369 B
13 lines
369 B
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type TDmZc struct {
|
|
ZcId string `xorm:"not null pk comment('职称CODE') CHAR(2)"`
|
|
ZcName string `xorm:"not null comment('职称名称') VARCHAR(64)"`
|
|
UpdateTs time.Time `xorm:"not null default 'current_timestamp()' TIMESTAMP"`
|
|
IdInt int64 `xorm:"not null autoincr comment('整数主键') unique INT(11)"`
|
|
}
|