实现案件进度查询

This commit is contained in:
qitz
2023-10-19 15:18:46 +08:00
parent 50e9b5fb9d
commit e54f4f0b70
6 changed files with 368 additions and 1 deletions
@@ -122,6 +122,16 @@ public class CaseApplicationController extends BaseController {
return success(caseApplicationselect);
}
/**
* 查询案件进度
*/
@PostMapping("/selectCaseProgress")
public AjaxResult selectCaseProgress(@Validated @RequestBody CaseApplication caseApplication) {
AjaxResult caseApplicationselect = caseApplicationService.selectCaseProgress(caseApplication);
return success(caseApplicationselect);
}
/**
* 查询签名链接
*/