|
@@ -9,6 +9,7 @@ public class TemplateAppliedVo {
|
|
|
private Long projectId;
|
|
|
private String projectName;
|
|
|
private Integer templateStatus;
|
|
|
+ private Integer accountStatus;
|
|
|
private String userId;
|
|
|
private String userName;
|
|
|
|
|
@@ -76,6 +77,14 @@ public class TemplateAppliedVo {
|
|
|
this.templateStatus = templateStatus;
|
|
|
}
|
|
|
|
|
|
+ public Integer getAccountStatus() {
|
|
|
+ return accountStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAccountStatus(Integer accountStatus) {
|
|
|
+ this.accountStatus = accountStatus;
|
|
|
+ }
|
|
|
+
|
|
|
public String getUserId() {
|
|
|
return userId;
|
|
|
}
|
|
@@ -103,6 +112,7 @@ public class TemplateAppliedVo {
|
|
|
", projectId=" + projectId +
|
|
|
", projectName='" + projectName + '\'' +
|
|
|
", templateStatus=" + templateStatus +
|
|
|
+ ", accountStatus=" + accountStatus +
|
|
|
", userId='" + userId + '\'' +
|
|
|
", userName='" + userName + '\'' +
|
|
|
'}';
|