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
373 B
13 lines
373 B
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type TDmZzmm struct {
|
|
ZzmmId string `xorm:"not null pk comment('政治面貌ID') CHAR(2)"`
|
|
ZzmmName string `xorm:"not null comment('政治面貌名称') VARCHAR(255)"`
|
|
UpdateTs time.Time `xorm:"default 'current_timestamp()' TIMESTAMP"`
|
|
IdInt int64 `xorm:"not null autoincr comment('整数主键') unique INT(11)"`
|
|
}
|