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.
16 lines
225 B
16 lines
225 B
3 years ago
|
/*
|
||
|
* @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"`
|
||
|
}
|