|
@@ -30,4 +30,17 @@ public interface IAssessApi {
|
|
|
*/
|
|
|
@GetMapping(value = "/program/projectList/getOverdueFilingProjectList")
|
|
|
String getOverdueFilingProjectList();
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询未关联项目的报告
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/program/projectList/getProjectList")
|
|
|
+ String getProjectList();
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存作废的报告号
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/program/projectList/insertReportNo")
|
|
|
+ void insertReportNo(@RequestParam(value = "value")String value);
|
|
|
+
|
|
|
}
|