grid.go 201 B

123456789
  1. package response
  2. import "dy-admin/internal/pcmserver/bus/model"
  3. type GridListResponse struct {
  4. List []model.Grid `json:"list"`
  5. Use int `json:"use"`
  6. Total int `json:"total"`
  7. }