Commit c21a500e authored by chenhao's avatar chenhao

删除对于的对外接口

parent e8ae0f64
...@@ -27,7 +27,6 @@ import com.baomidou.mybatisplus.core.metadata.IPage; ...@@ -27,7 +27,6 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
import com.yeejoin.amos.boot.biz.common.controller.BaseController; import com.yeejoin.amos.boot.biz.common.controller.BaseController;
import com.yeejoin.amos.boot.module.common.api.dto.DutyCarDto; import com.yeejoin.amos.boot.module.common.api.dto.DutyCarDto;
import com.yeejoin.amos.boot.module.common.api.service.IDutyCarService; import com.yeejoin.amos.boot.module.common.api.service.IDutyCarService;
import com.yeejoin.amos.boot.module.common.biz.service.impl.DutyCarServiceImpl;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
...@@ -47,9 +46,6 @@ public class DutyCarController extends BaseController { ...@@ -47,9 +46,6 @@ public class DutyCarController extends BaseController {
@Autowired @Autowired
IDutyCarService iDutyCarService; IDutyCarService iDutyCarService;
@Autowired
DutyCarServiceImpl dutyCarServiceImpl;
/** /**
* 值班列表视图--分页 * 值班列表视图--分页
...@@ -168,12 +164,4 @@ public class DutyCarController extends BaseController { ...@@ -168,12 +164,4 @@ public class DutyCarController extends BaseController {
@ApiParam(value = "岗位") @RequestParam(required = false) String postType){ @ApiParam(value = "岗位") @RequestParam(required = false) String postType){
return ResponseHelper.buildResponse(iDutyCarService.getSchedulingDutyForSpecifyDate(dutyDay,shiftId,postType)); return ResponseHelper.buildResponse(iDutyCarService.getSchedulingDutyForSpecifyDate(dutyDay,shiftId,postType));
} }
@TycloudOperation(ApiLevel = UserType.AGENCY)
@ApiOperation("查询指定日期值班人信息列表")
@GetMapping("/getDutyCarCount")
public ResponseModel getDutyCarCount(
@ApiParam(value = "车辆id") @RequestParam(required = false) String carId
){
return ResponseHelper.buildResponse(dutyCarServiceImpl.getDutyCarCount(carId));
}
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment