|
@@ -17,6 +17,21 @@ public class ProjectPlanWeekly extends DataEntity<ProjectPlanWeekly> {
|
|
private String weeklyStatus; //0-为完成工作计划
|
|
private String weeklyStatus; //0-为完成工作计划
|
|
private String remarksStatus; //备注状态
|
|
private String remarksStatus; //备注状态
|
|
private String remarksReason; //备注原因
|
|
private String remarksReason; //备注原因
|
|
|
|
+ private String officeId;
|
|
|
|
+ private String companyId;
|
|
|
|
+
|
|
|
|
+ public String getOfficeId() {
|
|
|
|
+ return officeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOfficeId(String officeId) {
|
|
|
|
+ this.officeId = officeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCompanyId(String companyId) {
|
|
|
|
+ this.companyId = companyId;
|
|
|
|
+ }
|
|
|
|
+
|
|
private ProjectRecords projectRecords;
|
|
private ProjectRecords projectRecords;
|
|
|
|
|
|
public ProjectRecords getProjectRecords() {
|
|
public ProjectRecords getProjectRecords() {
|
|
@@ -29,6 +44,19 @@ public class ProjectPlanWeekly extends DataEntity<ProjectPlanWeekly> {
|
|
|
|
|
|
private User user;
|
|
private User user;
|
|
private Office office;
|
|
private Office office;
|
|
|
|
+ private Office company;
|
|
|
|
+
|
|
|
|
+ public String getCompanyId() {
|
|
|
|
+ return companyId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Office getCompany() {
|
|
|
|
+ return company;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCompany(Office company) {
|
|
|
|
+ this.company = company;
|
|
|
|
+ }
|
|
|
|
|
|
public Office getOffice() {
|
|
public Office getOffice() {
|
|
return office;
|
|
return office;
|