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.
15 lines
761 B
15 lines
761 B
package sqlmodel
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type BoUserTerminalEquipments struct {
|
|
TerminalEquipmentId int `xorm:"terminalEquipmentId not null pk autoincr comment('自增长id') INT"`
|
|
UserId int64 `xorm:"userId not null comment('用户表id') INT"`
|
|
TerminalEquipmentName string `xorm:"terminalEquipmentName not null comment('终端设备名称') VARCHAR(30)"`
|
|
LoginCountry string `xorm:"loginCountry not null comment('登录国家') VARCHAR(30)"`
|
|
LoginCity string `xorm:"loginCity not null comment('登录城市') VARCHAR(30)"`
|
|
LoginIp int `xorm:"loginIp not null comment('登录IP') INT"`
|
|
AddTime time.Time `xorm:"addTime not null comment('创建时间') DATETIME"`
|
|
}
|
|
|