|
@@ -231,4 +231,16 @@ public class CwProjectReportArchiveController {
|
|
|
return ResponseEntity.ok(hiById);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据id删除财务项目报告归档信息
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @ApiLog(value = "根据id删除财务项目报告归档信息", type = LogTypeEnum.SAVE)
|
|
|
+ @DeleteMapping("deleteById")
|
|
|
+ public ResponseEntity deleteById(String id) {
|
|
|
+ return cwProjectReportArchiveService.deleteByIds(id);
|
|
|
+ }
|
|
|
+
|
|
|
}
|