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;
|
}
|
}
|