| | |
| | | package com.java110.api.components.assetImport; |
| | | |
| | | import com.java110.api.smo.assetExport.IExportOwnerCarSMO; |
| | | import com.java110.api.smo.assetImport.impl.ImportOwnerCarSMOImpl; |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.core.context.PageData; |
| | | import com.java110.core.log.LoggerFactory; |
| | | import com.java110.dto.app.AppDto; |
| | | import org.slf4j.Logger; |
| | | import com.java110.core.log.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.stereotype.Component; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | /** |
| | | * 添加应用组件 |
| | |
| | | private final static Logger logger = LoggerFactory.getLogger(ImportOwnerCarComponent.class); |
| | | |
| | | @Autowired |
| | | private ImportOwnerCarSMOImpl importOwnerCarSMOImpl; |
| | | |
| | | @Autowired |
| | | private IExportOwnerCarSMO exportOwnerCarSMOImpl; |
| | | |
| | | /** |
| | | * 添加应用数据 |
| | | * |
| | | * @param pd 页面数据封装 |
| | | * @return ResponseEntity 对象 |
| | | */ |
| | | public ResponseEntity<String> importData(IPageData pd, MultipartFile uploadFile) throws Exception { |
| | | return importOwnerCarSMOImpl.importExcelData(pd, uploadFile); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 添加应用数据 |