|
@@ -48,7 +48,7 @@ public class ZhcxInsideInspectionController {
|
|
|
public R dispacth(@RequestBody InsideInspectionDispatchRequest req){
|
|
|
req.setDispatchFlag(1);
|
|
|
zhcxInsideInspectionService.dispatch(req);
|
|
|
- return R.ok();
|
|
|
+ return R.ok("派单成功");
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -61,7 +61,7 @@ public class ZhcxInsideInspectionController {
|
|
|
public R reDispatch(@RequestBody InsideInspectionDispatchRequest req){
|
|
|
req.setDispatchFlag(2);
|
|
|
zhcxInsideInspectionService.reDispatch(req);
|
|
|
- return R.ok();
|
|
|
+ return R.ok("改派成功");
|
|
|
}
|
|
|
}
|
|
|
|