Files

18 lines
366 B
Go
Raw Permalink Normal View History

2026-07-06 10:41:41 +08:00
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
}