location.go 226 B

123456789101112131415
  1. package v1
  2. import (
  3. "go-common/app/interface/bbq/app-bbq/model"
  4. )
  5. // LocationRequest .
  6. type LocationRequest struct {
  7. PID int32 `form:"pid"`
  8. }
  9. // LocationResponse .
  10. type LocationResponse struct {
  11. List []*model.Location
  12. }