sys_dept.go 313 B

123456789101112131415
  1. /*
  2. * @desc:部门model
  3. * @company:云南奇讯科技有限公司
  4. * @Author: yixiaohu<yxh669@qq.com>
  5. * @Date: 2022/4/11 9:07
  6. */
  7. package model
  8. import "github.com/tiger1103/gfast/v3/internal/app/system/model/entity"
  9. type SysDeptTreeRes struct {
  10. *entity.SysDept
  11. Children []*SysDeptTreeRes `json:"children"`
  12. }