go-common/app/interface/bbq/app-bbq/model/location.go

10 lines
194 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package model
// Location .
type Location struct {
ID int32 `json:"id"`
PID int32 `json:"pid"`
Name string `json:"name"`
Child []*Location `json:"child,omitempty"`
}