duhuizhe
2023-10-16 3aa55dd3f62cee2c1c4c0aa74e1570acf83f8927
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.consum.base.core;
 
import com.consum.base.core.po.SYS_AGENCY;
 
public class AgencyEntity {
 
    private long agency_id;
 
    //当前ID代表的SYS_AGENCY
    private SYS_AGENCY angency;
 
    //第一层级的SYS_AGENCY,即省级机构
    private SYS_AGENCY firstAgency;
 
    //第二层级SYS_AGENCY,即市级机构
    private SYS_AGENCY secondAgency;
 
    //第三层级SYS_AGENCY,即县级机构
    private SYS_AGENCY thirdAgency;
 
    //第四层级SYS_AGENCY,即支局、网点机构
    private SYS_AGENCY fourthAgency;
 
    public SYS_AGENCY getAngency() {
        return angency;
    }
 
    public void setAngency(SYS_AGENCY angency) {
        this.angency = angency;
    }
 
    public SYS_AGENCY getFirstAgency() {
        return firstAgency;
    }
 
    public void setFirstAgency(SYS_AGENCY firstAgency) {
        this.firstAgency = firstAgency;
    }
 
    public SYS_AGENCY getSecondAgency() {
        return secondAgency;
    }
 
    public void setSecondAgency(SYS_AGENCY secondAgency) {
        this.secondAgency = secondAgency;
    }
 
    public SYS_AGENCY getThirdAgency() {
        return thirdAgency;
    }
 
    public void setThirdAgency(SYS_AGENCY thirdAgency) {
        this.thirdAgency = thirdAgency;
 
    }
 
    public SYS_AGENCY getFourthAgency() {
        return fourthAgency;
    }
 
    public void setFourthAgency(SYS_AGENCY fourthAgency) {
        this.fourthAgency = fourthAgency;
    }
 
 
    public AgencyEntity(long agency_id){
        this.agency_id = agency_id;
    }
 
 
 
 
    public long getAgency_id() {
        return agency_id;
    }
 
    public void setAgency_id(long agency_id) {
        this.agency_id = agency_id;
    }
}