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