wang-hao-jie
2022-08-25 57dcc73636bb7d8dce89c808eb8cc988a7512264
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.ruoyi.station.model;
 
import java.util.List;
 
public class DeptUsersModel {
    private String id;
    private String title;
    private List<DeptUsersModel> children;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public List<DeptUsersModel> getChildren() {
        return children;
    }
 
    public void setChildren(List<DeptUsersModel> children) {
        this.children = children;
    }
}