|
@@ -12,7 +12,7 @@ public class ThirdPartyAccessPK implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = -2564683239937634130L;
|
|
private static final long serialVersionUID = -2564683239937634130L;
|
|
|
|
|
|
- private Long orgId;
|
|
|
|
|
|
+ private Long rootOrgId;
|
|
|
|
|
|
private String appId;
|
|
private String appId;
|
|
|
|
|
|
@@ -20,18 +20,18 @@ public class ThirdPartyAccessPK implements Serializable {
|
|
super();
|
|
super();
|
|
}
|
|
}
|
|
|
|
|
|
- public ThirdPartyAccessPK(Long orgId, String appId) {
|
|
|
|
|
|
+ public ThirdPartyAccessPK(Long rootOrgId, String appId) {
|
|
super();
|
|
super();
|
|
- this.orgId = orgId;
|
|
|
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
this.appId = appId;
|
|
this.appId = appId;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getOrgId() {
|
|
|
|
- return orgId;
|
|
|
|
|
|
+ public Long getRootOrgId() {
|
|
|
|
+ return rootOrgId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setOrgId(Long orgId) {
|
|
|
|
- this.orgId = orgId;
|
|
|
|
|
|
+ public void setRootOrgId(Long rootOrgId) {
|
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
}
|
|
}
|
|
|
|
|
|
public String getAppId() {
|
|
public String getAppId() {
|