1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package model
- import (
- "iot_manager_service/app/device/dao"
- "time"
- )
- type RsqInfoBoardList struct {
- Records []InfoBoardDetail `json:"records"`
- Current int `json:"current"`
- Size int `json:"size"`
- Pages int `json:"pages"`
- Total int `json:"total"`
- }
- type ReqInfoBoardRemove struct {
- IDs int `json:"ids"`
- }
- type InfoBoardDetail struct {
- dao.InfoBoard
- EndLineTime time.Time `json:"endLineTime"`
- NetworkState string `json:"networkState"`
- RunState string `json:"runState"`
- PublicName string `json:"publicName"`
- OnTheAir string `json:"onTheAir"`
- ResolutionName string `json:"resolutionName"`
- Volume string `json:"volume"`
- Voltage string `json:"voltage"`
- Luminance string `json:"luminance"`
- Temperature string `json:"temperature"`
- RebootTime string `json:"rebootTime"`
- Power string `json:"power"`
- BootStartTime string `json:"bootStartTime"`
- BootEndTime string `json:"bootEndTime"`
- }
- type CltledData struct {
- Powerstatus string `json:"powerstatus"`
- Musicvolume string `json:"musicvolume"`
- Brightness string `json:"brightness"`
- Playing string `json:"playing"`
- Colortemperature string `json:"colortemperature"`
- SleepTime string `json:"sleepTime"`
- WakeupTime string `json:"wakeupTime"`
- RebootTime string `json:"rebootTime"`
- RealWidth string `json:"real_width"`
- RealHeight string `json:"real_height"`
- }
|