garbage.go 428 B

123456789101112131415
  1. package model
  2. import "iot_manager_service/app/device/dao"
  3. type RsqGarbageList struct {
  4. Records []dao.Garbage `json:"records"` //记录列表
  5. Current int `json:"current"` //当前分页
  6. Size int `json:"size"` //每页数量
  7. Pages int `json:"pages"` //总页数
  8. Total int `json:"total"` //总数
  9. }
  10. type ReqGarbageRemove struct {
  11. IDs int `json:"ids"` //分组编码
  12. }