暂存
This commit is contained in:
+10
@@ -16,8 +16,18 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
public class AdjudicationController extends BaseController {
|
||||
@Autowired
|
||||
private IAdjudicationService adjudicationService;
|
||||
|
||||
/**
|
||||
* 生成裁决书
|
||||
* @param caseApplication
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("/document")
|
||||
public AjaxResult createDocument(@Validated @RequestBody CaseApplication caseApplication){
|
||||
return adjudicationService.createDocument(caseApplication);
|
||||
}
|
||||
@PostMapping("/")
|
||||
public AjaxResult sendDocumentByEmail(){
|
||||
return adjudicationService.sendDocumentByEmail();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user