- package model
- import "iot_manager_service/app/device/dao"
- type RsqOptoSensorList struct {
- Records []dao.OptoSensor `json:"records"`
- Current int `json:"current"`
- Size int `json:"size"`
- Pages int `json:"pages"`
- Total int `json:"total"`
- }
- type ReqOptoSensorRemove struct {
- IDs int `json:"ids"`
- }
|