parking_lot.go 191 B

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