xiangpei
2024-05-09 cfc61445380851d621f4dd853fe62941f9c80207
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
 
    /**
     * 管理员
     */
    private List<Integer> adminIds;
    private List<String> adminNames;
 
}