Files
2026-06-01 21:48:41 +08:00

12 lines
220 B
Go

package ghomemodel
type DeviceKey struct {
ID int `xorm:"id pk autoincr"`
DeviceID string `xorm:"device_id"`
RandKey string `xorm:"rand_key"`
}
func (DeviceKey) TableName() string {
return "device_key"
}