18 lines
366 B
Go
18 lines
366 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type UserHeadphoneImpedance struct {
|
|
ID int
|
|
MacAddr string
|
|
DeviceModel string
|
|
ImpedanceOhm int
|
|
HeadphoneBrand string
|
|
HeadphoneModel string
|
|
HeadphoneBrandNorm string
|
|
HeadphoneModelNorm string
|
|
IpAddr string
|
|
CreateAt time.Time
|
|
UpdateAt time.Time
|
|
}
|