|  |  |  | 
|---|
|  |  |  | import com.zy.common.utils.excel.matcode.MatCodeExcelListener; | 
|---|
|  |  |  | import com.zy.common.web.BaseController; | 
|---|
|  |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
|---|
|  |  |  | import org.springframework.transaction.annotation.Transactional; | 
|---|
|  |  |  | import org.springframework.web.bind.annotation.*; | 
|---|
|  |  |  | import org.springframework.web.multipart.MultipartFile; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | // 导入 | 
|---|
|  |  |  | @RequestMapping(value = "/matCode/import/auth") | 
|---|
|  |  |  | @ManagerAuth(memo = "物料编码数据导入") | 
|---|
|  |  |  | @Transactional | 
|---|
|  |  |  | public R matCodeImport(MultipartFile file) throws IOException, InterruptedException { | 
|---|
|  |  |  | MatCodeExcelListener listener = new MatCodeExcelListener(getUserId()); | 
|---|
|  |  |  | EasyExcel.read(file.getInputStream(), MatCodeExcel.class, listener).sheet().doRead(); | 
|---|