|
@@ -37,7 +37,9 @@ public class UserContext implements BaseModel{
|
|
|
private long organizationId;
|
|
|
|
|
|
private long projectId;
|
|
|
-
|
|
|
+
|
|
|
+ private long identityId;
|
|
|
+
|
|
|
private String organizedName;
|
|
|
|
|
|
private String roleName;
|
|
@@ -102,6 +104,14 @@ public class UserContext implements BaseModel{
|
|
|
this.projectId = projectId;
|
|
|
}
|
|
|
|
|
|
+ public long getIdentityId() {
|
|
|
+ return identityId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIdentityId(long identityId) {
|
|
|
+ this.identityId = identityId;
|
|
|
+ }
|
|
|
+
|
|
|
public MgrOrganization getOrganization() {
|
|
|
return organization;
|
|
|
}
|
|
@@ -264,6 +274,7 @@ public class UserContext implements BaseModel{
|
|
|
flowUser.setPracticeCertificate(user.getPracticeCertificate());
|
|
|
flowUser.setPracticeSeal(user.getPracticeSeal());
|
|
|
flowUser.setProjectId(user.getLastProjectId());
|
|
|
+ flowUser.setIdentityId(user.getLastIdentityId());
|
|
|
flowUser.setOrganization(currentOrganization);
|
|
|
flowUser.setOrganizationList(organizationList);
|
|
|
if (currentOrganization != null) {
|