Files
app-api/internal/model/user_headphone_impedance.go
2026-07-06 10:41:41 +08:00

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
}