实现重新生成裁决书
This commit is contained in:
+12
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user