面包店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

category.go 318 B

8 months ago
12345678910
  1. package md
  2. type CateGoryTreeList struct {
  3. Id int `json:"id"`
  4. Pid int `json:"pid"`
  5. Name string `json:"name"`
  6. CreateAt string `json:"create_time"`
  7. UpdateAt string `json:"update_time"`
  8. Children []CateGoryTreeList `json:"children"`
  9. }