|
@@ -70,6 +70,19 @@ public class ProposalInfoController extends BaseController
|
|
return getDataTable(list);
|
|
return getDataTable(list);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 联名提案信息列表导出(只查询附议)
|
|
|
|
+ */
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('proposalInfo:info:jointlyExport')")
|
|
|
|
+ @Log(title = "提案信息", businessType = BusinessType.EXPORT)
|
|
|
|
+ @PostMapping("/jointlyExport")
|
|
|
|
+ public void jointlyExport(HttpServletResponse response, ProposalInfo proposalInfo)
|
|
|
|
+ {
|
|
|
|
+ List<ProposalInfo> list = proposalInfoService.jointlyList(proposalInfo);
|
|
|
|
+ ExcelUtil<ProposalInfo> util = new ExcelUtil<ProposalInfo>(ProposalInfo.class);
|
|
|
|
+ util.exportExcel(response, list, "提案信息数据");
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 根据单位查询
|
|
* 根据单位查询
|
|
*/
|
|
*/
|
|
@@ -82,6 +95,19 @@ public class ProposalInfoController extends BaseController
|
|
return getDataTable(list);
|
|
return getDataTable(list);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 联名提案信息列表导出(只查询附议)
|
|
|
|
+ */
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('proposalInfo:info:unitListExport')")
|
|
|
|
+ @Log(title = "提案信息", businessType = BusinessType.EXPORT)
|
|
|
|
+ @PostMapping("/unitListExport")
|
|
|
|
+ public void unitListExport(HttpServletResponse response, ProposalInfo proposalInfo)
|
|
|
|
+ {
|
|
|
|
+ List<ProposalInfo> list = proposalInfoService.unitList(proposalInfo);
|
|
|
|
+ ExcelUtil<ProposalInfo> util = new ExcelUtil<ProposalInfo>(ProposalInfo.class);
|
|
|
|
+ util.exportExcel(response, list, "提案信息数据");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
/**
|
|
/**
|
|
* 导出提案信息列表
|
|
* 导出提案信息列表
|