调解书签收

This commit is contained in:
qitz
2024-01-20 15:39:13 +08:00
parent 8260767ef2
commit f3f89065a5
6 changed files with 116 additions and 2 deletions
@@ -89,6 +89,19 @@ public class MsSignSealController extends BaseController {
return msSignSealService.msCaseFile(dto.getIds());
}
/**
* 签收
* @param dto
* @return
*/
@PostMapping("/msCaseSign")
public AjaxResult msCaseSign(@RequestBody MsSignSealDTO dto){
if (dto.getCaseId() == null) {
return error("参数校验失败");
}
return msSignSealService.msCaseSign(dto);
}