黎星凯
2024-04-15 62b6a7fac3f2acde70b578431147c4a01f19c182
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.consum.base.pojo.response;
 
import java.util.ArrayList;
import java.util.List;
import lombok.Data;
 
/**
 * @author asus
 * @version 1.0
 * @description: 机构
 * @date 2023/11/16 16:56
 */
@Data
public class FinSysTenantVO {
 
    private Long id;
    private String name;
    //tenant department user
    private String type;
    private List<DepartmentVO> children = new ArrayList<>();
 
 
}