audit_log.go 273 B

123456789101112131415
  1. package model
  2. // AuditLog .
  3. type AuditLog struct {
  4. Order string `json:"order"`
  5. Sort string `json:"sort"`
  6. Page *Pager `json:"page"`
  7. Result []*LogRes `json:"result"`
  8. }
  9. // LogRes .
  10. type LogRes struct {
  11. Int1 int64 `json:"int_1"`
  12. Oid int64 `json:"oid"`
  13. }