/* * @desc:部门model * @company:云南奇讯科技有限公司 * @Author: yixiaohu * @Date: 2022/4/11 9:07 */ package model import ( "github.com/tiger1103/gfast/v3/internal/app/system/model/entity" ) type SysDeptTreeRes struct { *entity.SysDept Children []*SysDeptTreeRes `json:"children"` } type LinkDeptRes struct { DeptId uint64 `json:"deptId"` DeptName string `json:"deptName"` }