|
@@ -8,30 +8,38 @@ import java.util.List;
|
|
|
|
|
|
public class SealMaterialInfoExport extends ActEntity<SealMaterialInfoExport> {
|
|
|
|
|
|
+ //项目名称
|
|
|
+ @ExcelField(title="项目名称", align=2, sort=1)
|
|
|
+ private String projectName;
|
|
|
+
|
|
|
+ //报告号
|
|
|
+ @ExcelField(title="报告号", align=2, sort=2)
|
|
|
+ private String projectReportNum;
|
|
|
+
|
|
|
//用印材料名称
|
|
|
- @ExcelField(title="用印材料名称", align=2, sort=1)
|
|
|
+ @ExcelField(title="用印材料名称", align=2, sort=3)
|
|
|
private String sealMaterialName;
|
|
|
|
|
|
// 数量
|
|
|
- @ExcelField(title="份数", align=2, sort=2)
|
|
|
+ @ExcelField(title="份数", align=2, sort=4)
|
|
|
private Integer amount;
|
|
|
|
|
|
// 主要内容简述
|
|
|
- @ExcelField(title="主要内容简述", align=2, sort=3)
|
|
|
+ @ExcelField(title="主要内容简述", align=2, sort=5)
|
|
|
private String mainContents;
|
|
|
|
|
|
// 经办人
|
|
|
private User agent;
|
|
|
|
|
|
- @ExcelField(title="经办人", align=2, sort=5)
|
|
|
+ @ExcelField(title="经办人", align=2, sort=7)
|
|
|
private String agentName; //经办人名称
|
|
|
|
|
|
|
|
|
- @ExcelField(title="备注", align=2, sort=6)
|
|
|
+ @ExcelField(title="备注", align=2, sort=8)
|
|
|
private String sealMaterialImportRemarks;//材料备注
|
|
|
|
|
|
// 用印时间
|
|
|
- @ExcelField(title="用印时间", align=2, sort=4)
|
|
|
+ @ExcelField(title="用印时间", align=2, sort=6)
|
|
|
private String useSealTime;
|
|
|
|
|
|
private String projectId; //项目id
|
|
@@ -109,4 +117,20 @@ public class SealMaterialInfoExport extends ActEntity<SealMaterialInfoExport> {
|
|
|
public void setAgentName(String agentName) {
|
|
|
this.agentName = agentName;
|
|
|
}
|
|
|
+
|
|
|
+ public String getProjectName() {
|
|
|
+ return projectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectName(String projectName) {
|
|
|
+ this.projectName = projectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectReportNum() {
|
|
|
+ return projectReportNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectReportNum(String projectReportNum) {
|
|
|
+ this.projectReportNum = projectReportNum;
|
|
|
+ }
|
|
|
}
|