xiangpei
11 小时以前 4f89ece90fca89b667a244376605f9190a234b80
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;
}