| | |
| | | import com.ruoyi.projectManagement.vo.SaveInfoStageVo; |
| | | import com.ruoyi.projectManagement.vo.SaveInfoVo; |
| | | import com.ruoyi.projectManagement.vo.SearchInfoVo; |
| | | import com.ruoyi.projectManagement.vo.AttachmentGroupVo; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import lombok.RequiredArgsConstructor; |
| | |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | @GetMapping("/attachments/{id}") |
| | | @Operation(summary = "文档归档:获取项目所有附件") |
| | | public AjaxResult getAttachments(@PathVariable("id") Long id) { |
| | | return AjaxResult.success(infoService.getProjectAttachments(id)); |
| | | } |
| | | |
| | | |
| | | } |