仲裁系统bug修复

This commit is contained in:
18792927508
2024-05-08 17:28:22 +08:00
parent fbcf91a592
commit 5b24d0f522
17 changed files with 735 additions and 293 deletions
@@ -67,4 +67,20 @@ public interface IAdjudicationService {
AjaxResult caseFileBatch(Integer batchNumber);
AjaxResult serviceBatch(Integer batchNumber) throws EsignDemoException, IOException;
/**
* 开庭审理,确定审理结果,生成裁决书
* @param caseApplication
* @return
*/
AjaxResult caseJudgment(CaseApplication caseApplication);
/**
* 案件状态改变
* @param id 案件id
* @param caseStatus 案件状态
* @return
*/
AjaxResult changeCaseStatus(Long id, Integer caseStatus);
}