| 12345678910111213141516171819 |
- package dto
- import (
- "git.rtzhtech.cn/iss/public-lib/model"
- )
- type GetDeviceReq struct {
- DeviceName string `json:"device_name,omitempty"`
- AppId int32 `json:"app_id,omitempty"`
- Modelid int32 `json:"modelid,omitempty"`
- Region_id int32 `json:"region_id,omitempty"`
- Dev_type_id int32 `json:"dev_type_id,omitempty"`
- LimitPage
- }
- type GetDeviceResp struct {
- List []*model.DevDevinfo `json:"list"`
- Total int64 `json:"total"`
- }
|