package response import "server/dao" type Booth struct { dao.Booth } type BoothList struct { Total int64 `json:"total"` List []dao.Booth `json:"list"` }