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
34
35
36
37
38
39
40
41
42
43
44
45
  | package com.moral.api.pojo.dto.organization; 
 |    
 |  import com.moral.api.entity.Organization; 
 |  import com.moral.api.entity.User; 
 |  import lombok.Data; 
 |    
 |  import java.util.List; 
 |    
 |  /** 
 |   * @ClassName OrganizationDTO 
 |   * @Description TODO 
 |   * @Author 陈凯裕 
 |   * @Date 2021/3/22 16:37 
 |   * @Version TODO 
 |   **/ 
 |  @Data 
 |  public class OrganizationDTO { 
 |    
 |      /* 
 |       * 响应码 
 |       * */ 
 |      private Integer code; 
 |    
 |      /* 
 |       * 响应信息 
 |       * */ 
 |      private String msg; 
 |    
 |      /* 
 |      * 组织 
 |      * */ 
 |      private Organization organization; 
 |    
 |      /* 
 |      * 父组织 
 |      * */ 
 |      private Organization parentOrganization; 
 |    
 |      /* 
 |      * admin账号 
 |      * */ 
 |      private User adminUser; 
 |    
 |    
 |  } 
 |  
  |