对比新文件 |
| | |
| | | package com.gk.firework.Service; |
| | | |
| | | import com.gk.firework.Domain.ProductCodeInfo; |
| | | import com.gk.firework.Domain.ProductInfo; |
| | | import com.gk.firework.Domain.UserInfo; |
| | | import com.gk.firework.Domain.Utils.BooleanReason; |
| | | import com.gk.firework.Domain.Vo.Product2JsonVo; |
| | | |
| | | import java.io.InputStream; |
| | | import java.util.List; |
| | | |
| | | public interface ExcelExportService { |
| | | |
| | | BooleanReason importDistrictExcel(InputStream in,String operator, Boolean isExcel2007); |
| | | |
| | | BooleanReason imporSelfCheckExcel(InputStream in, String username, Boolean isExcel2007); |
| | | |
| | | BooleanReason importEnterpriseExcel(InputStream in, UserInfo userInfo, Boolean isExcel2007); |
| | | |
| | | void importFeedExcel(InputStream in, UserInfo user, Boolean isExcel2007,Long enterpriseId); |
| | | BooleanReason importUserExcel(InputStream in, String operator, Boolean isExcel2007); |
| | | |
| | | List<Product2JsonVo> parsingProduct(InputStream inputStream, UserInfo userInfo, boolean isExcel2007, String enterprisenumber); |
| | | |
| | | List<Product2JsonVo> parsingProduct(InputStream inputStream, UserInfo userInfo, boolean isExcel2007); |
| | | |
| | | BooleanReason imporEditPriceExcel(InputStream in, String companynumber,String username, Boolean isExcel2007); |
| | | |
| | | List<String> parseProductCode(InputStream inputStream, UserInfo userInfo, boolean isExcel2007); |
| | | |
| | | List<ProductInfo> parseProductFromOldSystem(InputStream inputStream, UserInfo user, boolean isExcel2007); |
| | | |
| | | BooleanReason importUserCodeExcel(InputStream in, String operator, Boolean isExcel2007); |
| | | |
| | | BooleanReason importDLCompanyCodeExcel(InputStream in, UserInfo userInfo, boolean isExcel2007); |
| | | |
| | | BooleanReason imporSaleProductExcel(InputStream in, String username, Boolean isExcel2007); |
| | | |
| | | BooleanReason imporSaleOrderExcel(InputStream in, String username, Boolean isExcel2007); |
| | | |
| | | } |