123456789101112131415161718192021 |
- package model
- import (
- "iot_manager_service/app/system/dao"
- )
- type OperationHisDetail struct {
- dao.OperationHistory
- HandleName string `json:"handleName"`
- OperationTypeName string `json:"operationTypeName"`
- ModuleTypeName string `json:"moduleTypeName"`
- }
- type RsqOperationHisList struct {
- Records []OperationHisDetail `json:"records"`
- Current int `json:"current"`
- Size int `json:"size"`
- Pages int `json:"pages"`
- Total int64 `json:"total"`
- }
|