12345678910111213141516171819202122 |
- package model
- import "iot_manager_service/app/device/dao"
- type ReqOnDemandGroupRemove struct {
- IDs int `json:"ids"`
- SN int `json:"sn"`
- Name string `json:"name"`
- }
- type RspOnDemandGroupList struct {
- Records []dao.OnDemandGroup `json:"records"`
- Current int `json:"current"`
- Size int `json:"size"`
- Total int `json:"total"`
- Pages int `json:"pages"`
- }
- type RspOnDemandGroupNumber struct {
- Name string `json:"name"`
- Value int `json:"value"`
- }
|