|
@@ -40,6 +40,7 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
private String projectNum;//投标标号
|
|
private String projectNum;//投标标号
|
|
private String totalContractName;//总合同名称
|
|
private String totalContractName;//总合同名称
|
|
private String officeName;
|
|
private String officeName;
|
|
|
|
+ private String officeId;
|
|
private BigDecimal contractPrice; // 合同金额(元)
|
|
private BigDecimal contractPrice; // 合同金额(元)
|
|
private String money1;
|
|
private String money1;
|
|
private String contractState; // 合同状态
|
|
private String contractState; // 合同状态
|
|
@@ -63,6 +64,14 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
private String recordNum; //归档编号
|
|
private String recordNum; //归档编号
|
|
private String contrractRecordId; //归档合同id
|
|
private String contrractRecordId; //归档合同id
|
|
private String createName; //登记人
|
|
private String createName; //登记人
|
|
|
|
+ private String createNameStr; //登记人
|
|
|
|
+ private String createId; //登记人Id
|
|
|
|
+ private String year; //年份
|
|
|
|
+ private Date beginDate; // 开始 登记日期
|
|
|
|
+ private Date endDate; // 结束 登记日期
|
|
|
|
+ private String workContractBorrow; //借阅情况
|
|
|
|
+ private String borrowStatus; //合同借用状态
|
|
|
|
+ private String giveStatus; //合同归还状态
|
|
@Override
|
|
@Override
|
|
public String getId() {
|
|
public String getId() {
|
|
return id;
|
|
return id;
|
|
@@ -72,15 +81,26 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public void setId(String id) {
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
this.id = id;
|
|
}
|
|
}
|
|
- @ExcelField(title="合同编号", align=2, sort=1)
|
|
|
|
- public String getContractNum() {
|
|
|
|
- return contractNum;
|
|
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="年份", align=2, sort=1)
|
|
|
|
+ public String getYear() {
|
|
|
|
+ return year;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setContractNum(String contractNum) {
|
|
|
|
- this.contractNum = contractNum;
|
|
|
|
|
|
+ public void setYear(String year) {
|
|
|
|
+ this.year = year;
|
|
}
|
|
}
|
|
- @ExcelField(title="合同名称", align=2, sort=2)
|
|
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="客户名称", align=2, sort=2)
|
|
|
|
+ public String getClientName() {
|
|
|
|
+ return clientName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setClientName(String clientName) {
|
|
|
|
+ this.clientName = clientName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="合同名称", align=2, sort=3)
|
|
public String getName() {
|
|
public String getName() {
|
|
return name;
|
|
return name;
|
|
}
|
|
}
|
|
@@ -88,7 +108,96 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public void setName(String name) {
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
this.name = name;
|
|
}
|
|
}
|
|
- @ExcelField(title="合同来源", align=2, sort=3)
|
|
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="合同编号", align=2, sort=4)
|
|
|
|
+ public String getContractNum() {
|
|
|
|
+ return contractNum;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setContractNum(String contractNum) {
|
|
|
|
+ this.contractNum = contractNum;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="合同类型",mainDictType="contract_info_type", align=2, sort=5)
|
|
|
|
+ public String getContractTypeDoc() {
|
|
|
|
+ return contractTypeDoc;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setContractTypeDoc(String contractTypeDoc) {
|
|
|
|
+ this.contractTypeDoc = contractTypeDoc;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
+ @ExcelField(title="签订日期", align=2, sort=6)
|
|
|
|
+ public Date getContractDate() {
|
|
|
|
+ return contractDate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setContractDate(Date contractDate) {
|
|
|
|
+ this.contractDate = contractDate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="登记人", align=2, sort=7)
|
|
|
|
+ public String getCreateName() {
|
|
|
|
+ return createName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCreateName(String createName) {
|
|
|
|
+ this.createName = createName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ @ExcelField(title="登记日期", align=2, sort=8)
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
+ public Date getCreateDate() {
|
|
|
|
+ return super.getCreateDate();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="登记部门", align=2, sort=9)
|
|
|
|
+ public String getOfficeName() {
|
|
|
|
+ return officeName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOfficeName(String officeName) {
|
|
|
|
+ this.officeName = officeName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="归档编号", align=2, sort=10)
|
|
|
|
+ public String getRecordNum() {
|
|
|
|
+ return recordNum;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRecordNum(String recordNum) {
|
|
|
|
+ this.recordNum = recordNum;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="签订状态",/*dictType="audit_contract_state",*/ align=2, sort=11)
|
|
|
|
+ public String getContractState() {
|
|
|
|
+ return contractState;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setContractState(String contractState) {
|
|
|
|
+ this.contractState = contractState;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="归档状态",/*dictType="archive_state",*/ align=2, sort=12)
|
|
|
|
+ public String getContrractRecordStatus() {
|
|
|
|
+ return contrractRecordStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setContrractRecordStatus(String contrractRecordStatus) {
|
|
|
|
+ this.contrractRecordStatus = contrractRecordStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="借阅状态",/*dictType="archive_state",*/ align=2, sort=13)
|
|
|
|
+ public String getBorrowStatus() {
|
|
|
|
+ return borrowStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBorrowStatus(String borrowStatus) {
|
|
|
|
+ this.borrowStatus = borrowStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getExt() {
|
|
public String getExt() {
|
|
if("0".equals(ext)){
|
|
if("0".equals(ext)){
|
|
return "投标项目";
|
|
return "投标项目";
|
|
@@ -101,7 +210,7 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public void setExt(String ext) {
|
|
public void setExt(String ext) {
|
|
this.ext = ext;
|
|
this.ext = ext;
|
|
}
|
|
}
|
|
- @ExcelField(title="投标名称", align=2, sort=4)
|
|
|
|
|
|
+ //@ExcelField(title="投标名称", align=2, sort=4)
|
|
public String getProjectName() {
|
|
public String getProjectName() {
|
|
return projectName;
|
|
return projectName;
|
|
}
|
|
}
|
|
@@ -109,7 +218,7 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public void setProjectName(String projectName) {
|
|
public void setProjectName(String projectName) {
|
|
this.projectName = projectName;
|
|
this.projectName = projectName;
|
|
}
|
|
}
|
|
- @ExcelField(title="投标编号", align=2, sort=5)
|
|
|
|
|
|
+ //@ExcelField(title="投标编号", align=2, sort=5)
|
|
public String getProjectNum() {
|
|
public String getProjectNum() {
|
|
return projectNum;
|
|
return projectNum;
|
|
}
|
|
}
|
|
@@ -117,7 +226,7 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public void setProjectNum(String projectNum) {
|
|
public void setProjectNum(String projectNum) {
|
|
this.projectNum = projectNum;
|
|
this.projectNum = projectNum;
|
|
}
|
|
}
|
|
- @ExcelField(title="总合同名称", align=2, sort=6)
|
|
|
|
|
|
+ //@ExcelField(title="总合同名称", align=2, sort=6)
|
|
public String getTotalContractName() {
|
|
public String getTotalContractName() {
|
|
return totalContractName;
|
|
return totalContractName;
|
|
}
|
|
}
|
|
@@ -125,33 +234,13 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public void setTotalContractName(String totalContractName) {
|
|
public void setTotalContractName(String totalContractName) {
|
|
this.totalContractName = totalContractName;
|
|
this.totalContractName = totalContractName;
|
|
}
|
|
}
|
|
- @ExcelField(title="所属部门", align=2, sort=7)
|
|
|
|
- public String getOfficeName() {
|
|
|
|
- return officeName;
|
|
|
|
- }
|
|
|
|
- public void setOfficeName(String officeName) {
|
|
|
|
- this.officeName = officeName;
|
|
|
|
- }
|
|
|
|
public BigDecimal getContractPrice() {
|
|
public BigDecimal getContractPrice() {
|
|
return contractPrice;
|
|
return contractPrice;
|
|
}
|
|
}
|
|
public void setContractPrice(BigDecimal contractPrice) {
|
|
public void setContractPrice(BigDecimal contractPrice) {
|
|
this.contractPrice = contractPrice;
|
|
this.contractPrice = contractPrice;
|
|
}
|
|
}
|
|
- @ExcelField(title="合同状态",dictType="audit_completion_state", align=2, sort=9)
|
|
|
|
- public String getContractState() {
|
|
|
|
- return contractState;
|
|
|
|
- }
|
|
|
|
- public void setContractState(String contractState) {
|
|
|
|
- this.contractState = contractState;
|
|
|
|
- }
|
|
|
|
- @ExcelField(title="委托方", align=2, sort=10)
|
|
|
|
- public String getClientName() {
|
|
|
|
- return clientName;
|
|
|
|
- }
|
|
|
|
- public void setClientName(String clientName) {
|
|
|
|
- this.clientName = clientName;
|
|
|
|
- }
|
|
|
|
|
|
+
|
|
public Date getBeginContractDate() {
|
|
public Date getBeginContractDate() {
|
|
return beginContractDate;
|
|
return beginContractDate;
|
|
}
|
|
}
|
|
@@ -165,15 +254,7 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
this.endContractDate = endContractDate;
|
|
this.endContractDate = endContractDate;
|
|
}
|
|
}
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
- @ExcelField(title="签订日期", align=2, sort=11)
|
|
|
|
- public Date getContractDate() {
|
|
|
|
- return contractDate;
|
|
|
|
- }
|
|
|
|
- public void setContractDate(Date contractDate) {
|
|
|
|
- this.contractDate = contractDate;
|
|
|
|
- }
|
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
- @ExcelField(title="合同生效日期", align=2, sort=12)
|
|
|
|
|
|
+ //@ExcelField(title="合同生效日期", align=2, sort=12)
|
|
public Date getEffectiveDate() {
|
|
public Date getEffectiveDate() {
|
|
return effectiveDate;
|
|
return effectiveDate;
|
|
}
|
|
}
|
|
@@ -181,14 +262,14 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
this.effectiveDate = effectiveDate;
|
|
this.effectiveDate = effectiveDate;
|
|
}
|
|
}
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
- @ExcelField(title="合同终止日期", align=2, sort=13)
|
|
|
|
|
|
+ //@ExcelField(title="合同终止日期", align=2, sort=13)
|
|
public Date getClosingDate() {
|
|
public Date getClosingDate() {
|
|
return closingDate;
|
|
return closingDate;
|
|
}
|
|
}
|
|
public void setClosingDate(Date closingDate) {
|
|
public void setClosingDate(Date closingDate) {
|
|
this.closingDate = closingDate;
|
|
this.closingDate = closingDate;
|
|
}
|
|
}
|
|
- @ExcelField(title="对方合同编号", align=2, sort=14)
|
|
|
|
|
|
+ //@ExcelField(title="对方合同编号", align=2, sort=14)
|
|
public String getAnotherContractNum() {
|
|
public String getAnotherContractNum() {
|
|
return anotherContractNum;
|
|
return anotherContractNum;
|
|
}
|
|
}
|
|
@@ -198,18 +279,18 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public BigDecimal getInvestmentAmount() {
|
|
public BigDecimal getInvestmentAmount() {
|
|
return investmentAmount;
|
|
return investmentAmount;
|
|
}
|
|
}
|
|
- @ExcelField(title="合同金额(元)", align=2, sort=8)
|
|
|
|
|
|
+ //@ExcelField(title="合同金额(元)", align=2, sort=8)
|
|
public String getMoney1() {
|
|
public String getMoney1() {
|
|
return UserUtils.getDecimalFormat(contractPrice);
|
|
return UserUtils.getDecimalFormat(contractPrice);
|
|
}
|
|
}
|
|
- @ExcelField(title="投资额(万元)", align=2, sort=15)
|
|
|
|
|
|
+ //@ExcelField(title="投资额(万元)", align=2, sort=15)
|
|
public String getMoney2() {
|
|
public String getMoney2() {
|
|
return UserUtils.getDecimalFormat(investmentAmount);
|
|
return UserUtils.getDecimalFormat(investmentAmount);
|
|
}
|
|
}
|
|
public void setInvestmentAmount(BigDecimal investmentAmount) {
|
|
public void setInvestmentAmount(BigDecimal investmentAmount) {
|
|
this.investmentAmount = investmentAmount;
|
|
this.investmentAmount = investmentAmount;
|
|
}
|
|
}
|
|
- @ExcelField(title="工程分类",mainDictType="contract_type", align=2, sort=16)
|
|
|
|
|
|
+ //@ExcelField(title="工程分类",mainDictType="contract_type", align=2, sort=16)
|
|
public String getContractType() {
|
|
public String getContractType() {
|
|
return contractType;
|
|
return contractType;
|
|
}
|
|
}
|
|
@@ -217,7 +298,7 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public void setContractType(String contractType) {
|
|
public void setContractType(String contractType) {
|
|
this.contractType = contractType;
|
|
this.contractType = contractType;
|
|
}
|
|
}
|
|
- @ExcelField(title="归档状态",dictType="record_state", align=2, sort=17)
|
|
|
|
|
|
+ //@ExcelField(title="归档状态",dictType="record_state", align=2, sort=17)
|
|
public String getRecordState() {
|
|
public String getRecordState() {
|
|
return recordState;
|
|
return recordState;
|
|
}
|
|
}
|
|
@@ -225,7 +306,7 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public void setRecordState(String recordState) {
|
|
public void setRecordState(String recordState) {
|
|
this.recordState = recordState;
|
|
this.recordState = recordState;
|
|
}
|
|
}
|
|
- @ExcelField(title="付款摘要", align=2, sort=18)
|
|
|
|
|
|
+ //@ExcelField(title="付款摘要", align=2, sort=18)
|
|
public String getSummaryPayment() {
|
|
public String getSummaryPayment() {
|
|
return summaryPayment;
|
|
return summaryPayment;
|
|
}
|
|
}
|
|
@@ -233,7 +314,7 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public void setSummaryPayment(String summaryPayment) {
|
|
public void setSummaryPayment(String summaryPayment) {
|
|
this.summaryPayment = summaryPayment;
|
|
this.summaryPayment = summaryPayment;
|
|
}
|
|
}
|
|
- @ExcelField(title="合同特别条款", align=2, sort=19)
|
|
|
|
|
|
+ //@ExcelField(title="合同特别条款", align=2, sort=19)
|
|
public String getContractSpecial() {
|
|
public String getContractSpecial() {
|
|
return contractSpecial;
|
|
return contractSpecial;
|
|
}
|
|
}
|
|
@@ -241,17 +322,9 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
public void setContractSpecial(String contractSpecial) {
|
|
public void setContractSpecial(String contractSpecial) {
|
|
this.contractSpecial = contractSpecial;
|
|
this.contractSpecial = contractSpecial;
|
|
}
|
|
}
|
|
- @ExcelField(title="合同类型说明",mainDictType="contract_info_type", align=2, sort=20)
|
|
|
|
- public String getContractTypeDoc() {
|
|
|
|
- return contractTypeDoc;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setContractTypeDoc(String contractTypeDoc) {
|
|
|
|
- this.contractTypeDoc = contractTypeDoc;
|
|
|
|
- }
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
- @ExcelField(title="备注信息", align=2, sort=21)
|
|
|
|
|
|
+ //@ExcelField(title="备注信息", align=2, sort=21)
|
|
public String getRemarks() {
|
|
public String getRemarks() {
|
|
return remarks;
|
|
return remarks;
|
|
}
|
|
}
|
|
@@ -269,35 +342,72 @@ public class WorkContractListInfo extends ActEntity<WorkContractListInfo> {
|
|
this.client = client;
|
|
this.client = client;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getContrractRecordStatus() {
|
|
|
|
- return contrractRecordStatus;
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public String getContrractRecordId() {
|
|
|
|
+ return contrractRecordId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setContrractRecordStatus(String contrractRecordStatus) {
|
|
|
|
- this.contrractRecordStatus = contrractRecordStatus;
|
|
|
|
|
|
+ public void setContrractRecordId(String contrractRecordId) {
|
|
|
|
+ this.contrractRecordId = contrractRecordId;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getRecordNum() {
|
|
|
|
- return recordNum;
|
|
|
|
|
|
+
|
|
|
|
+ public String getOfficeId() {
|
|
|
|
+ return officeId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setRecordNum(String recordNum) {
|
|
|
|
- this.recordNum = recordNum;
|
|
|
|
|
|
+ public void setOfficeId(String officeId) {
|
|
|
|
+ this.officeId = officeId;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getContrractRecordId() {
|
|
|
|
- return contrractRecordId;
|
|
|
|
|
|
+ public Date getBeginDate() {
|
|
|
|
+ return beginDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setContrractRecordId(String contrractRecordId) {
|
|
|
|
- this.contrractRecordId = contrractRecordId;
|
|
|
|
|
|
+ public void setBeginDate(Date beginDate) {
|
|
|
|
+ this.beginDate = beginDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getCreateName() {
|
|
|
|
- return createName;
|
|
|
|
|
|
+ public Date getEndDate() {
|
|
|
|
+ return endDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setCreateName(String createName) {
|
|
|
|
- this.createName = createName;
|
|
|
|
|
|
+ public void setEndDate(Date endDate) {
|
|
|
|
+ this.endDate = endDate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getWorkContractBorrow() {
|
|
|
|
+ return workContractBorrow;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setWorkContractBorrow(String workContractBorrow) {
|
|
|
|
+ this.workContractBorrow = workContractBorrow;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCreateId() {
|
|
|
|
+ return createId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCreateId(String createId) {
|
|
|
|
+ this.createId = createId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCreateNameStr() {
|
|
|
|
+ return createNameStr;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCreateNameStr(String createNameStr) {
|
|
|
|
+ this.createNameStr = createNameStr;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public String getGiveStatus() {
|
|
|
|
+ return giveStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGiveStatus(String giveStatus) {
|
|
|
|
+ this.giveStatus = giveStatus;
|
|
}
|
|
}
|
|
}
|
|
}
|