sandbox.go 225 B

123456789
  1. package response
  2. import "hongze/hongze_yb/logic/sandbox"
  3. // SandboxListResp 沙盘逻辑数据反馈
  4. type SandboxListResp struct {
  5. List []sandbox.SandboxItem `json:"list"`
  6. Paging *PagingItem `json:"paging"`
  7. }