OperationHis.go 680 B

123456789101112131415161718192021
  1. package model
  2. import (
  3. "iot_manager_service/app/system/dao"
  4. )
  5. type OperationHisDetail struct {
  6. dao.OperationHistory
  7. HandleName string `json:"handleName"` //操作人
  8. OperationTypeName string `json:"operationTypeName"` //操作类型
  9. ModuleTypeName string `json:"moduleTypeName"` //操作模块
  10. }
  11. // 响应结构体
  12. type RsqOperationHisList struct {
  13. Records []OperationHisDetail `json:"records"` //记录列表
  14. Current int `json:"current"` //当前分页
  15. Size int `json:"size"` //每页数量
  16. Pages int `json:"pages"` //总页数
  17. Total int64 `json:"total"` //总数
  18. }