zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.changhong.epc.rely.api.bean;
 
import com.changhong.epc.constter.base.BaseBean;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Arrays;
import java.util.List;
 
/**
 * 租户(返回字段,包含公司)
 * @author liush
 *
 */
@Data
public class Tenant extends BaseBean implements Serializable {
    
    /**
     * 租户名称
     */
    private String name;
 
    /**
     * 租户code
     */
    private String code;
    
    /**
     * 组织机构code
     */
    private String orgCode;
    
    /**
     * @Author WangYX
     * @Description 租户状态
     * @Date 2019/3/26 3:33 PM
     */
    private Integer state;
    
    /**
     * 租户名下公司
     */
    private List<Company> companys;
    
    public Tenant(Tenant tenant, Company company) {
        super();
        setId(tenant.getId());
        this.name = tenant.name;
        this.code = tenant.code;
        this.orgCode = tenant.orgCode;
        if(company != null){
            this.companys = Arrays.asList(company);
        }
    }
 
    public Tenant() {
        super();
    }
    
    
    
          
    
}