1234567891011121314151617181920212223242526272829 |
- package service
- type EnvData struct {
- Sn string `json:"sn"`
- Temperature float64 `json:"temperature"`
- Humidity float64 `json:"humidity"`
- Illuminance int64 `json:"illuminance"`
- }
- type OpticalData struct {
- Sn string `json:"sn"`
- Illuminance int64 `json:"illuminance"`
- }
- type InductanceData struct {
- Sn string `json:"sn"`
- TotalPower int64 `json:"totalPower"`
- }
- type RelayState struct {
- Sn string `json:"sn"`
- Way int `json:"way"`
- TurnOf int `json:"turnOf"`
- }
- type LampBrightNess struct {
- Way int8 `json:"way"`
- BrightNess int `json:"brightNess"`
- }
|