|
@@ -157,9 +157,9 @@ public class DocumentTemplateController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("删除录入数据")
|
|
|
- @RequestMapping(value = "/data/delete/{documentTemplateId}", method = RequestMethod.DELETE)
|
|
|
- public Response deleteDocumentInputData(@PathVariable long documentTemplateId) {
|
|
|
- documentService.deleteDocumentInputData(documentTemplateId);
|
|
|
+ @RequestMapping(value = "/data/delete/{id}", method = RequestMethod.DELETE)
|
|
|
+ public Response deleteDocumentInputData(@PathVariable long id) {
|
|
|
+ documentService.deleteDocumentInputData(id);
|
|
|
return Response.ok();
|
|
|
}
|
|
|
|