实现重新生成裁决书

This commit is contained in:
qitz
2023-10-18 18:03:27 +08:00
parent 4a2dc3a2ec
commit 50e9b5fb9d
4 changed files with 276 additions and 3 deletions
@@ -21,6 +21,8 @@ public class AdjudicationController extends BaseController {
private IAdjudicationService adjudicationService;
/**
* 生成裁决书
* @param caseApplication
@@ -31,6 +33,16 @@ public class AdjudicationController extends BaseController {
return adjudicationService.createDocument(caseApplication);
}
/**
* 重新生成裁决书
* @param caseApplication
* @return
*/
@PostMapping("/regenerationDocument")
public AjaxResult regenerationDocument(@Validated @RequestBody CaseApplication caseApplication){
return adjudicationService.regenerationDocument(caseApplication);
}
/**
* 裁决书送达(电子邮件)
* @param bookSendVO