xiangpei
2025-06-09 764a0fb1f27f9d7e3634686af47580a6f42b1ae3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cn.lili.modules.goods.service;
 
import org.springframework.web.multipart.MultipartFile;
 
import javax.servlet.http.HttpServletResponse;
 
public interface GoodsImportService {
 
 
    /**
     * 下载导入列表
     * @param response
     */
    void download(HttpServletResponse response);
 
    /**
     * 导入商品
     */
    void importExcel(MultipartFile files) throws Exception;
}