耳机阻抗上报

This commit is contained in:
eafonyang
2026-07-06 10:41:41 +08:00
parent 455bea8380
commit 5d2910e89e
13 changed files with 674 additions and 4 deletions
@@ -0,0 +1,17 @@
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
}