|
|
@ -45,7 +45,7 @@ public class InputDocController { |
|
|
|
return JsonResponse.newInstance().ok(); |
|
|
|
}*/ |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@MustLoginTall |
|
|
|
@ApiOperation(value = "通过任务id查询输入文档", notes = "1007:通过任务id查询输入文档") |
|
|
|
@RequestMapping(value = "/docByTask", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<List<InputDocVo.DocOfTask>> findDocByTask(@ApiParam @Validated @RequestBody QueryDto<InputDocDto.FindDocByTask> params) { |
|
|
@ -56,7 +56,7 @@ public class InputDocController { |
|
|
|
} |
|
|
|
|
|
|
|
@OperateType(value = 15) |
|
|
|
@MustLogin |
|
|
|
@MustLoginTall |
|
|
|
@ApiOperation(value = "给输入文档上传文件", notes = "1007:给输入文档上传文件") |
|
|
|
@RequestMapping(value = "/uploadForDoc", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse uploadForDoc(@ApiParam @Validated @RequestBody QueryDto<InputDocDto.UploadForDoc> params) { |
|
|
@ -66,7 +66,7 @@ public class InputDocController { |
|
|
|
return JsonResponse.newInstance().ok(); |
|
|
|
} |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@MustLoginTall |
|
|
|
@ApiOperation(value = "查看文档上传历史记录", notes = "1007:查看文档上传历史记录") |
|
|
|
@RequestMapping(value = "/viewDocHistory", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse viewDocHistory(@ApiParam @Validated @RequestBody QueryDto<InputDocDto.ViewDocHistory> params) { |
|
|
@ -76,7 +76,7 @@ public class InputDocController { |
|
|
|
return JsonResponse.newInstance().ok(historyRecords); |
|
|
|
} |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@MustLoginTall |
|
|
|
@ApiOperation(value = "添加输入文档", notes = "1007:添加输入文档") |
|
|
|
@RequestMapping(value = "/addDoc", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse addDoc(@ApiParam @Validated @RequestBody QueryDto<InputDocDto.AddDoc> params) { |
|
|
|