device.go 463 B

12345678910111213141516171819
  1. package dto
  2. import (
  3. "git.rtzhtech.cn/iss/public-lib/model"
  4. )
  5. type GetDeviceReq struct {
  6. DeviceName string `json:"device_name,omitempty"`
  7. AppId int32 `json:"app_id,omitempty"`
  8. Modelid int32 `json:"modelid,omitempty"`
  9. Region_id int32 `json:"region_id,omitempty"`
  10. Dev_type_id int32 `json:"dev_type_id,omitempty"`
  11. LimitPage
  12. }
  13. type GetDeviceResp struct {
  14. List []*model.DevDevinfo `json:"list"`
  15. Total int64 `json:"total"`
  16. }