|
|
@@ -83,4 +83,13 @@ public class AdjudicationController extends BaseController {
|
|
83
|
83
|
,String apptrackingNum,String restrackingNum){
|
|
84
|
84
|
return adjudicationService.service(id,appEmail,resEmail,apptrackingNum,restrackingNum);
|
|
85
|
85
|
}
|
|
|
86
|
+ /**
|
|
|
87
|
+ * 用印(暂时只改案件状态)
|
|
|
88
|
+ * @param caseApplication
|
|
|
89
|
+ * @return
|
|
|
90
|
+ */
|
|
|
91
|
+ @PostMapping("/stamp")
|
|
|
92
|
+ public AjaxResult stamp(@Validated @RequestBody CaseApplication caseApplication){
|
|
|
93
|
+ return adjudicationService.stamp(caseApplication);
|
|
|
94
|
+ }
|
|
86
|
95
|
}
|