| | |
| | | import com.ruoyi.common.utils.SecurityUtils; |
| | | import com.ruoyi.common.utils.StringUtils; |
| | | import com.ruoyi.common.utils.file.FileUtils; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.apache.commons.io.FilenameUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | |
| | | * @since 2026/03/02 11:19 |
| | | */ |
| | | @Service |
| | | @RequiredArgsConstructor |
| | | public class AfterSalesServiceFileServiceImpl extends ServiceImpl<AfterSalesServiceFileMapper, AfterSalesServiceFile> implements AfterSalesServiceFileService { |
| | | |
| | | @Autowired |
| | | private AfterSalesServiceService afterSalesServiceService; |
| | | private final AfterSalesServiceService afterSalesServiceService; |
| | | |
| | | @Value("${file.upload-dir}") |
| | | private String uploadDir; |