xiangpei
2025-06-03 2502b12e05029149f0cd5aea6c25bc419520cc4f
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;
}