tree.go 286 B

1234567891011121314
  1. /*
  2. * @description:废弃
  3. * @Author: CP
  4. * @Date: 2020-09-16 14:15:41
  5. * @FilePath: \construction_management\lib\tree.go
  6. */
  7. package lib
  8. type Tree struct {
  9. Id int `json:"id"`
  10. ParentId int `json:"pid"`
  11. Name string `json:"name"`
  12. Child []*Tree `json:"child"`
  13. }