go-common/app/interface/bbq/app-bbq/api/http/v1/location.go

16 lines
226 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package v1
import (
"go-common/app/interface/bbq/app-bbq/model"
)
// LocationRequest .
type LocationRequest struct {
PID int32 `form:"pid"`
}
// LocationResponse .
type LocationResponse struct {
List []*model.Location
}