技术监督代码bug修改

This commit is contained in:
2023-07-19 14:27:12 +08:00
parent b32e6f252a
commit a154924d9a
5 changed files with 22 additions and 9 deletions

View File

@@ -48,9 +48,9 @@ public class SupvFileController extends BaseController {
@PostMapping("detail")
@OperateInfo(info = LogEnum.BUSINESS_COMMON,operateType = OperateType.DOWNLOAD)
@ApiOperation("监督计划问题附件下载")
public HttpResult<Object> detail(HttpServletResponse response, @RequestParam("busId") String busId, @RequestParam("type") Integer type){
public HttpResult<Object> detail(HttpServletResponse response, @RequestParam("busId") String busId, @RequestParam("type") Integer type,@RequestParam("attachmentType") String attachmentType){
String methodDescribe = getMethodDescribe("detail");
iSupvFileService.detail(response,busId,type);
iSupvFileService.detail(response,busId,type,attachmentType);
return null;
}
}