|
@@ -96,10 +96,9 @@ public class WorkerManagerController {
|
|
|
@PostMapping("/count")
|
|
|
@ApiOperation("师傅管理数量")
|
|
|
public ResponseHelper<WorkerUserCount> count(
|
|
|
- @ApiParam(value = "id", required = true) @RequestParam String id,
|
|
|
HttpServletRequest request
|
|
|
) throws ParseException {
|
|
|
- WorkerUserCount workerUserCount = workerManagerLogic.countWorker(id);
|
|
|
+ WorkerUserCount workerUserCount = workerManagerLogic.countWorker();
|
|
|
return ResponseHelper.success();
|
|
|
}
|
|
|
|