onDemandGroup.go 655 B

12345678910111213141516171819202122
  1. package model
  2. import "iot_manager_service/app/device/dao"
  3. type ReqOnDemandGroupRemove struct {
  4. IDs int `json:"ids"` //分组编码
  5. SN int `json:"sn"` //sn
  6. Name string `json:"name"` //名称
  7. }
  8. type RspOnDemandGroupList struct {
  9. Records []dao.OnDemandGroup `json:"records"` //记录列表
  10. Current int `json:"current"` //当前分页
  11. Size int `json:"size"` //每页数量
  12. Total int `json:"total"` //总数
  13. Pages int `json:"pages"` //总页数
  14. }
  15. type RspOnDemandGroupNumber struct {
  16. Name string `json:"name"` //key
  17. Value int `json:"value"` //value
  18. }