package com.mindskip.xzs.viewmodel.admin.department;
|
|
import com.mindskip.xzs.base.BasePage;
|
import lombok.Data;
|
|
import java.util.List;
|
|
@Data
|
public class DepartmentResponseVM extends BasePage {
|
|
|
private Integer id;
|
|
private String name;
|
|
/**
|
* 父级ID
|
*/
|
private Integer parentId;
|
|
/**
|
* 子级数据
|
*/
|
private List<DepartmentResponseVM> children;
|
|
/**
|
* 管理员
|
*/
|
private List<Integer> adminIds;
|
private List<String> adminNames;
|
|
}
|