location.go 194 B

123456789
  1. package model
  2. // Location .
  3. type Location struct {
  4. ID int32 `json:"id"`
  5. PID int32 `json:"pid"`
  6. Name string `json:"name"`
  7. Child []*Location `json:"child,omitempty"`
  8. }