|
@@ -11,6 +11,7 @@ public class ResearchReportDto implements Serializable {
|
|
@ExcelField(title = "SUBJECT",attrName = "marketType",align = ExcelField.Align.AUTO,sort = 20),
|
|
@ExcelField(title = "SUBJECT",attrName = "marketType",align = ExcelField.Align.AUTO,sort = 20),
|
|
@ExcelField(title = "ABSTRACT",attrName = "reportScopeHtml",align = ExcelField.Align.AUTO,sort = 30),
|
|
@ExcelField(title = "ABSTRACT",attrName = "reportScopeHtml",align = ExcelField.Align.AUTO,sort = 30),
|
|
@ExcelField(title = "TABLE OF CONTENTS",attrName = "directoryHtml",align = ExcelField.Align.AUTO,sort = 40),
|
|
@ExcelField(title = "TABLE OF CONTENTS",attrName = "directoryHtml",align = ExcelField.Align.AUTO,sort = 40),
|
|
|
|
+ @ExcelField(title = "TABLES AND FIGURES",attrName = "chartsHtml",align = ExcelField.Align.AUTO,sort = 50),
|
|
})
|
|
})
|
|
private String title; // 标题
|
|
private String title; // 标题
|
|
private String marketType; // 所属分类
|
|
private String marketType; // 所属分类
|
|
@@ -19,6 +20,7 @@ public class ResearchReportDto implements Serializable {
|
|
private String marketScale; //市场规模
|
|
private String marketScale; //市场规模
|
|
private String marketDriven; //市场驱动
|
|
private String marketDriven; //市场驱动
|
|
private String lang;
|
|
private String lang;
|
|
|
|
+ private String chartsHtml; // 图表目录
|
|
|
|
|
|
public String getTitle() {
|
|
public String getTitle() {
|
|
return title;
|
|
return title;
|
|
@@ -75,4 +77,12 @@ public class ResearchReportDto implements Serializable {
|
|
public void setLang(String lang) {
|
|
public void setLang(String lang) {
|
|
this.lang = lang;
|
|
this.lang = lang;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getChartsHtml() {
|
|
|
|
+ return chartsHtml;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setChartsHtml(String chartsHtml) {
|
|
|
|
+ this.chartsHtml = chartsHtml;
|
|
|
|
+ }
|
|
}
|
|
}
|