operation_log.go 700 B

123456789101112131415161718192021222324252627282930313233343536
  1. package v1
  2. import (
  3. "xingjia-management-gateway/apis"
  4. "xingjia-management-gateway/param/base"
  5. )
  6. type OperationLogListQuery struct {
  7. Page int64 `form:"page" json:"page"`
  8. PageSize int64 `form:"page_size" json:"page_size"`
  9. Start int64 `form:"start" json:"start"`
  10. End int64 `form:"start" json:"end"`
  11. }
  12. type OperationLogListRequest struct {
  13. base.Header
  14. OperationLogListQuery
  15. }
  16. type OperationLogListResponse struct {
  17. base.Result
  18. Data apis.OperationLogListReply `json:"data"`
  19. }
  20. type OperationLogDelQuery struct {
  21. Ids string `form:"ids" json:"ids"`
  22. }
  23. type OperationLogDelRequest struct {
  24. base.Header
  25. OperationLogDelQuery
  26. }
  27. type OperationLogDelResponse struct {
  28. base.Result
  29. }