sandbox.go 403 B

123456789101112131415161718
  1. package response
  2. import (
  3. "eta_gn/eta_api/models/sandbox"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. // SandboxListResp 沙盘列表返回数据
  7. type SandboxListResp struct {
  8. Paging *paging.PagingItem
  9. List []*sandbox.Sandbox
  10. }
  11. // SandboxVersionListResp 沙盘版本列表返回数据
  12. type SandboxVersionListResp struct {
  13. Paging *paging.PagingItem
  14. List []*sandbox.SandboxVersionListItem
  15. }