Browse Source

20210410根据任务id查询交付物详情

recovery
zy_Java 4 years ago
parent
commit
4e1802309c
  1. 6
      tall/src/main/java/com/ccsens/tall/web/DeliverController.java

6
tall/src/main/java/com/ccsens/tall/web/DeliverController.java

@ -62,7 +62,7 @@ public class DeliverController {
return JsonResponse.newInstance().ok(deliverInfo); return JsonResponse.newInstance().ok(deliverInfo);
} }
@ApiOperation(value = "查看任务下所有交付物详细信息", notes = "") @ApiOperation(value = "查看任务下所有交付物详细信息(旧)", notes = "")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(name = "taskId", value = "任务在此时间段的id", required = true, paramType = "query", dataType = "String") @ApiImplicitParam(name = "taskId", value = "任务在此时间段的id", required = true, paramType = "query", dataType = "String")
}) })
@ -76,7 +76,7 @@ public class DeliverController {
return JsonResponse.newInstance().ok(deliverInfo); return JsonResponse.newInstance().ok(deliverInfo);
} }
@ApiOperation(value = "查看单个交付物详细信息",notes = "") @ApiOperation(value = "查看单个交付物详细信息(旧)",notes = "")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(name="deliverId",value = "交付物Id",required = true,paramType = "query",dataType="String"), @ApiImplicitParam(name="deliverId",value = "交付物Id",required = true,paramType = "query",dataType="String"),
@ApiImplicitParam(name="taskId",value = "任务Id",required = true,paramType = "query",dataType="String") @ApiImplicitParam(name="taskId",value = "任务Id",required = true,paramType = "query",dataType="String")
@ -170,7 +170,7 @@ public class DeliverController {
// return JsonResponse.newInstance().ok(); // return JsonResponse.newInstance().ok();
// } // }
@ApiOperation(value = "通过任务id查看交付物信息",notes = "") @ApiOperation(value = "通过任务id查看交付物信息(新)",notes = "")
@ApiImplicitParams({ @ApiImplicitParams({
}) })
@RequestMapping(value = "queryByTaskId", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) @RequestMapping(value = "queryByTaskId", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"})

Loading…
Cancel
Save