Commit 4f9f2c29 authored by cq990612's avatar cq990612

修改一些bug

parent 7449d082
......@@ -107,7 +107,7 @@ public class WorkTimeOrderController extends BaseController {
@ApiOperation(value = "查询用户的所有项目和部门经理", notes = "查询用户的所有项目和部门经理", httpMethod = "GET")
@ApiImplicitParam(name = "userId", value = "用户id", dataType = "int", required = true)
@GetMapping(value = "/getproject")
@GetMapping(value = "/getProject")
public Result<List<ProjectDto>> getProjectByUserId(Integer userId) {
log.info("WorkTimeOrderController[]getProjectByUserId[]input.param.userId:{}" + userId);
if (null == userId) {
......@@ -153,7 +153,7 @@ public class WorkTimeOrderController extends BaseController {
@ApiOperation(value = "查询驳回未提交的", notes = "查询驳回未提交的", httpMethod = "GET")
@ApiImplicitParam(name = "userId", value = "用户id", dataType = "int", required = true)
@GetMapping(value = "/nosubmit")
@GetMapping(value = "/noSubmit")
public Result<List<WorkTimeOrderDto>> rejectNotSubmit(Integer userId) {
log.info("WorkTimeOrderController[]rejectNotSubmit[]input.param.userId:{}" + userId);
if (null == userId) {
......
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