| | |
| | | package com.ruoyi.basic.service; |
| | | |
| | | import com.ruoyi.basic.entity.StorageAttachment; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.constant.StorageAttachmentConstants; |
| | | import com.ruoyi.basic.entity.StorageAttachment; |
| | | import com.ruoyi.common.enums.StorageAttachmentRecordType; |
| | | |
| | | import java.util.List; |
| | |
| | | * @param fileType 文件类型 |
| | | * @return 文件信息列表 |
| | | */ |
| | | List<StorageAttachment> selectStorageAttachments(Long recordId, StorageAttachmentRecordType recordType, StorageAttachmentConstants fileType); |
| | | List<StorageAttachment> selectStorageAttachments(Long recordId, StorageAttachmentRecordType recordType, String fileType); |
| | | |
| | | /** |
| | | * 保存通用文件上传的附件信息 |
| | |
| | | * @param recordType 关联记录类型 |
| | | * @param fileType 文件类型 |
| | | */ |
| | | public void saveStorageAttachment(List<StorageAttachment> attachments, Long recordId, StorageAttachmentRecordType recordType, StorageAttachmentConstants fileType); |
| | | public void saveStorageAttachment(List<StorageAttachment> attachments, Long recordId, StorageAttachmentRecordType recordType, String fileType); |
| | | |
| | | /** |
| | | * 删除通用文件上传的附件信息 |