chenrui
2025-05-20 336275bafca413d0d5f0113c91c9b287c4a4dae1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.sales.service;
 
import com.ruoyi.sales.pojo.CommonFile;
import org.springframework.web.multipart.MultipartFile;
 
import java.io.IOException;
 
public interface ICommonFileService {
 
    int deleteSalesLedgerByIds(Long[] ids);
 
    CommonFile uploadFile(MultipartFile file, Long id, String type) throws IOException;
 
    int delCommonFileByIds(Long[] ids);
}