booth.go 166 B

123456789101112
  1. package response
  2. import "server/dao"
  3. type Booth struct {
  4. dao.Booth
  5. }
  6. type BoothList struct {
  7. Total int64 `json:"total"`
  8. List []dao.Booth `json:"list"`
  9. }