|
@@ -4,6 +4,7 @@ import java.util.List;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
import com.enteprise.enterprise.dto.EnterpriseDto;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
@@ -22,6 +23,7 @@ import com.enteprise.enterprise.domain.Enterprise;
|
|
|
import com.enteprise.enterprise.service.IEnterpriseService;
|
|
|
import com.enteprise.common.utils.poi.ExcelUtil;
|
|
|
import com.enteprise.common.core.page.TableDataInfo;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
/**
|
|
|
* enterpriseController
|
|
@@ -124,4 +126,35 @@ public class EnterpriseController extends BaseController
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 导入
|
|
|
+ */
|
|
|
+ @ApiOperation("导入企业实体(分类)数据")
|
|
|
+ @Log(title = "企业信息", businessType = BusinessType.IMPORT)
|
|
|
+ @PreAuthorize("@ss.hasPermi('enterprise:enterprise:add')")
|
|
|
+ @PostMapping("/importData")
|
|
|
+ public AjaxResult importData(MultipartFile file) {
|
|
|
+ try {
|
|
|
+ // 获取模板工具
|
|
|
+ ExcelUtil<EnterpriseDto> util = new ExcelUtil<>(EnterpriseDto.class);
|
|
|
+ List<EnterpriseDto> list = util.importExcel(file.getInputStream());
|
|
|
+ if (list.isEmpty()) {
|
|
|
+ return error("数据不得为空");
|
|
|
+ }
|
|
|
+ // 调用服务层进行插入或更新
|
|
|
+ int successCount = enterpriseService.insertOrUpdateBatch(list);
|
|
|
+ return AjaxResult.success("导入成功,共处理 " + successCount + " 条数据");
|
|
|
+ } catch (Exception e) {
|
|
|
+ return AjaxResult.error("导入失败:" + e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("企业实体(分类)模板")
|
|
|
+ @PostMapping("/importTemplate")
|
|
|
+ public void importTemplate(HttpServletResponse response)
|
|
|
+ {
|
|
|
+ ExcelUtil<EnterpriseDto> util = new ExcelUtil<>(EnterpriseDto.class);
|
|
|
+ util.importTemplateExcel(response, "企业实体(分类)数据");
|
|
|
+ }
|
|
|
+
|
|
|
}
|