package model

import "iot_manager_service/app/device/dao"

type RsqGarbageList struct {
	Records []dao.Garbage `json:"records"` //记录列表
	Current int           `json:"current"` //当前分页
	Size    int           `json:"size"`    //每页数量
	Pages   int           `json:"pages"`   //总页数
	Total   int           `json:"total"`   //总数
}

type ReqGarbageRemove struct {
	IDs int `json:"ids"` //分组编码
}