pasture_list.go 236 B

12345678910
  1. package model
  2. type PastureList struct {
  3. Id int64 `json:"id"`
  4. Name string `json:"name"`
  5. Province string `json:"province"`
  6. City string `json:"city"`
  7. County string `json:"county"`
  8. Address string `json:"address"`
  9. }