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.
16 lines
303 B
16 lines
303 B
4 years ago
|
package db
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type SelfTest struct {
|
||
|
//GORM attributes, see: http://gorm.io/docs/conventions.html
|
||
|
CreatedAt time.Time
|
||
|
UpdatedAt time.Time
|
||
|
DeletedAt *time.Time
|
||
|
|
||
|
DeviceWWN string
|
||
|
Device Device `json:"-" gorm:"foreignkey:DeviceWWN"` // use DeviceWWN as foreign key
|
||
|
|
||
|
Date time.Time
|
||
|
}
|