1234567891011121314151617 |
- package common
- type SwitchData struct {
- Sn string `json:"sn"`
- Way int `json:"way"`
- TurnOf int `json:"turnOf"`
- }
- type LampData struct {
- Way int `json:"way"`
- BrightNess int `json:"brightNess"`
- }
- type InductanceData struct {
- Sn string `json:"sn"`
- TotalPower int `json:"totalPower"`
- }
|