device.go 171 B

123456789101112
  1. package response
  2. import "server/dao"
  3. type Device struct {
  4. dao.Device
  5. }
  6. type DeviceList struct {
  7. Total int64 `json:"total"`
  8. List []dao.Device `json:"list"`
  9. }