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