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.
|
/* |
|
* @desc:部门model |
|
* |
|
* <yxh669@qq.com> |
|
* @Date: 2022/4/11 9:07 |
|
*/ |
|
|
|
package model |
|
|
|
import "tyj_admin/internal/model/entity" |
|
|
|
type SysDeptTreeRes struct { |
|
*entity.SysDept |
|
Children []*SysDeptTreeRes `json:"children"` |
|
}
|
|
|