|
|
@ -30,9 +30,11 @@ import java.util.List; |
|
|
|
@RestController |
|
|
|
@RequestMapping("/inputDoc") |
|
|
|
public class InputDocController { |
|
|
|
|
|
|
|
@Autowired |
|
|
|
private IInputDocService iInputDocService; |
|
|
|
@MustLogin |
|
|
|
|
|
|
|
/*@MustLogin |
|
|
|
@ApiOperation(value = "添加输入文档", notes = "1007:添加输入文档") |
|
|
|
@RequestMapping(value = "/addInputDoc", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse addInputDoc(@ApiParam @Validated @RequestBody QueryDto<InputDocDto.AddAddInputDoc> params) { |
|
|
@ -40,7 +42,7 @@ public class InputDocController { |
|
|
|
//iInputDocService.addInputDoc(params.getParam(),params.getUserId());
|
|
|
|
log.info("添加输入文档"); |
|
|
|
return JsonResponse.newInstance().ok(); |
|
|
|
} |
|
|
|
}*/ |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "通过任务id查询输入文档", notes = "1007:通过任务id查询输入文档") |
|
|
|