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