package response import "server/dao" type Device struct { dao.Device } type DeviceList struct { Total int64 `json:"total"` List []dao.Device `json:"list"` }