add:集成es搜索模块
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
package com.adc.da.search.dto;
|
||||
|
||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||
|
||||
public class SearchBussExportDto {
|
||||
|
||||
@Excel(name = "企业标准号", orderNum = "1",width = 12)
|
||||
private String numbershow;
|
||||
|
||||
@Excel(name = "企业标准名称", orderNum = "1",width = 14)
|
||||
private String nameshow;
|
||||
|
||||
@Excel(name = "发布日期", orderNum = "1",width = 10)
|
||||
private String issueTime;
|
||||
|
||||
// @Excel(name = "实施日期", orderNum = "1",width = 10)
|
||||
private String putTime;
|
||||
|
||||
@Excel(name = "企业标准状态", orderNum = "1",width = 14)
|
||||
private String standstateshow;
|
||||
|
||||
public String getNumbershow() {
|
||||
return numbershow;
|
||||
}
|
||||
|
||||
public void setNumbershow(String numbershow) {
|
||||
this.numbershow = numbershow;
|
||||
}
|
||||
|
||||
public String getNameshow() {
|
||||
return nameshow;
|
||||
}
|
||||
|
||||
public void setNameshow(String nameshow) {
|
||||
this.nameshow = nameshow;
|
||||
}
|
||||
|
||||
public String getIssueTime() {
|
||||
return issueTime;
|
||||
}
|
||||
|
||||
public void setIssueTime(String issueTime) {
|
||||
this.issueTime = issueTime;
|
||||
}
|
||||
|
||||
public String getPutTime() {
|
||||
return putTime;
|
||||
}
|
||||
|
||||
public void setPutTime(String putTime) {
|
||||
this.putTime = putTime;
|
||||
}
|
||||
|
||||
public String getStandstateshow() {
|
||||
return standstateshow;
|
||||
}
|
||||
|
||||
public void setStandstateshow(String standstateshow) {
|
||||
this.standstateshow = standstateshow;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
package com.adc.da.search.dto;
|
||||
|
||||
import com.adc.da.excel.annotation.Excel;
|
||||
|
||||
public class SearchItemsExportDto {
|
||||
|
||||
@Excel(name = "条款号",width = 16)
|
||||
private String itemsNum;
|
||||
|
||||
@Excel(name = "条款名称",width = 16)
|
||||
private String itemsName;
|
||||
|
||||
@Excel(name = "新车型实施日期",width = 16)
|
||||
private String newcarPutTime;
|
||||
|
||||
@Excel(name = "在产车实施日期",width = 16)
|
||||
private String productPutTime;
|
||||
|
||||
@Excel(name = "关联零部件",width = 16)
|
||||
private String parts;
|
||||
|
||||
@Excel(name = "适用车型",width = 16)
|
||||
private String applyArcticShow;
|
||||
|
||||
public String getItemsNum() {
|
||||
return itemsNum;
|
||||
}
|
||||
|
||||
public void setItemsNum(String itemsNum) {
|
||||
this.itemsNum = itemsNum;
|
||||
}
|
||||
|
||||
public String getItemsName() {
|
||||
return itemsName;
|
||||
}
|
||||
|
||||
public void setItemsName(String itemsName) {
|
||||
this.itemsName = itemsName;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getParts() {
|
||||
return parts;
|
||||
}
|
||||
|
||||
public void setParts(String parts) {
|
||||
this.parts = parts;
|
||||
}
|
||||
|
||||
public String getNewcarPutTime() {
|
||||
return newcarPutTime;
|
||||
}
|
||||
|
||||
public void setNewcarPutTime(String newcarPutTime) {
|
||||
this.newcarPutTime = newcarPutTime;
|
||||
}
|
||||
|
||||
public String getProductPutTime() {
|
||||
return productPutTime;
|
||||
}
|
||||
|
||||
public void setProductPutTime(String productPutTime) {
|
||||
this.productPutTime = productPutTime;
|
||||
}
|
||||
|
||||
public String getApplyArcticShow() {
|
||||
return applyArcticShow;
|
||||
}
|
||||
|
||||
public void setApplyArcticShow(String applyArcticShow) {
|
||||
this.applyArcticShow = applyArcticShow;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
package com.adc.da.search.dto;
|
||||
|
||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||
|
||||
public class SearchLawsExportDto {
|
||||
|
||||
@Excel(name = "文件号", orderNum = "1",width = 10)
|
||||
private String numbershow;
|
||||
|
||||
@Excel(name = "文件名称", orderNum = "1",width = 10)
|
||||
private String nameshow;
|
||||
|
||||
@Excel(name = "发布日期", orderNum = "1",width = 10)
|
||||
private String issueTime;
|
||||
|
||||
// @Excel(name = "实施日期", orderNum = "1",width = 10)
|
||||
// private String putTime;
|
||||
|
||||
@Excel(name = "文件状态", orderNum = "1",width = 10)
|
||||
private String standstateshow;
|
||||
|
||||
public String getNumbershow() {
|
||||
return numbershow;
|
||||
}
|
||||
|
||||
public void setNumbershow(String numbershow) {
|
||||
this.numbershow = numbershow;
|
||||
}
|
||||
|
||||
public String getNameshow() {
|
||||
return nameshow;
|
||||
}
|
||||
|
||||
public void setNameshow(String nameshow) {
|
||||
this.nameshow = nameshow;
|
||||
}
|
||||
|
||||
public String getIssueTime() {
|
||||
return issueTime;
|
||||
}
|
||||
|
||||
public void setIssueTime(String issueTime) {
|
||||
this.issueTime = issueTime;
|
||||
}
|
||||
|
||||
// public String getPutTime() {
|
||||
// return putTime;
|
||||
// }
|
||||
|
||||
// public void setPutTime(String putTime) {
|
||||
// this.putTime = putTime;
|
||||
// }
|
||||
//
|
||||
public String getStandstateshow() {
|
||||
return standstateshow;
|
||||
}
|
||||
|
||||
public void setStandstateshow(String standstateshow) {
|
||||
this.standstateshow = standstateshow;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
package com.adc.da.search.dto;
|
||||
|
||||
import com.adc.da.excel.annotation.Excel;
|
||||
|
||||
public class SearchMsgExportDto {
|
||||
|
||||
@Excel(name = "所属模块", orderNum = "1",width = 10)
|
||||
private String moduleName;
|
||||
|
||||
@Excel(name = "动态标题", orderNum = "1",width = 10)
|
||||
private String title;
|
||||
|
||||
@Excel(name = "发布日期", orderNum = "1",width = 10)
|
||||
private String issueTime;
|
||||
|
||||
public String getModuleName() {
|
||||
return moduleName;
|
||||
}
|
||||
|
||||
public void setModuleName(String moduleName) {
|
||||
this.moduleName = moduleName;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getIssueTime() {
|
||||
return issueTime;
|
||||
}
|
||||
|
||||
public void setIssueTime(String issueTime) {
|
||||
this.issueTime = issueTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
package com.adc.da.search.dto;
|
||||
|
||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||
|
||||
public class SearchStandExportDto {
|
||||
|
||||
@Excel(name = "标准号", orderNum = "1",width = 10)
|
||||
private String numbershow;
|
||||
|
||||
@Excel(name = "标准名称", orderNum = "1",width = 10)
|
||||
private String nameshow;
|
||||
|
||||
@Excel(name = "发布日期", orderNum = "1",width = 10)
|
||||
private String issueTime;
|
||||
|
||||
// @Excel(name = "实施日期", orderNum = "1",width = 10)
|
||||
private String putTime;
|
||||
|
||||
@Excel(name = "标准状态", orderNum = "1",width = 10)
|
||||
private String standstateshow;
|
||||
|
||||
public String getNumbershow() {
|
||||
return numbershow;
|
||||
}
|
||||
|
||||
public void setNumbershow(String numbershow) {
|
||||
this.numbershow = numbershow;
|
||||
}
|
||||
|
||||
public String getNameshow() {
|
||||
return nameshow;
|
||||
}
|
||||
|
||||
public void setNameshow(String nameshow) {
|
||||
this.nameshow = nameshow;
|
||||
}
|
||||
|
||||
public String getIssueTime() {
|
||||
return issueTime;
|
||||
}
|
||||
|
||||
public void setIssueTime(String issueTime) {
|
||||
this.issueTime = issueTime;
|
||||
}
|
||||
|
||||
public String getPutTime() {
|
||||
return putTime;
|
||||
}
|
||||
|
||||
public void setPutTime(String putTime) {
|
||||
this.putTime = putTime;
|
||||
}
|
||||
|
||||
public String getStandstateshow() {
|
||||
return standstateshow;
|
||||
}
|
||||
|
||||
public void setStandstateshow(String standstateshow) {
|
||||
this.standstateshow = standstateshow;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user