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)"` }