|
@@ -2,6 +2,8 @@ package com.enteprise.etype.controller;
|
|
|
|
|
|
import java.util.List;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
+
|
|
|
+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;
|
|
@@ -20,6 +22,7 @@ import com.enteprise.etype.domain.EnterpriseType;
|
|
|
import com.enteprise.etype.service.IEnterpriseTypeService;
|
|
|
import com.enteprise.common.utils.poi.ExcelUtil;
|
|
|
import com.enteprise.common.core.page.TableDataInfo;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
/**
|
|
|
* etypeController
|
|
@@ -64,7 +67,7 @@ public class EnterpriseTypeController extends BaseController
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('etype:etype:query')")
|
|
|
@GetMapping(value = "/{number}")
|
|
|
- public AjaxResult getInfo(@PathVariable("number") Long number)
|
|
|
+ public AjaxResult getInfo(@PathVariable("number") String number)
|
|
|
{
|
|
|
return success(enterpriseTypeService.selectEnterpriseTypeByNumber(number));
|
|
|
}
|
|
@@ -97,8 +100,35 @@ public class EnterpriseTypeController extends BaseController
|
|
|
@PreAuthorize("@ss.hasPermi('etype:etype:remove')")
|
|
|
@Log(title = "etype", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{numbers}")
|
|
|
- public AjaxResult remove(@PathVariable Long[] numbers)
|
|
|
+ public AjaxResult remove(@PathVariable String[] numbers)
|
|
|
{
|
|
|
+ System.out.println("");
|
|
|
return toAjax(enterpriseTypeService.deleteEnterpriseTypeByNumbers(numbers));
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导入
|
|
|
+ */
|
|
|
+ @ApiOperation("导入企业分类")
|
|
|
+ @Log(title = "资产信息", businessType = BusinessType.IMPORT)
|
|
|
+ @PreAuthorize("@ss.hasPermi('etype:etype:add')")
|
|
|
+ @PostMapping("/importData")
|
|
|
+ public AjaxResult importData(MultipartFile file) throws Exception {
|
|
|
+ // 获取模板工具
|
|
|
+ ExcelUtil<EnterpriseType> util = new ExcelUtil<>(EnterpriseType.class);
|
|
|
+ List<EnterpriseType> tbEnterpriseType = util.importExcel(file.getInputStream());
|
|
|
+ if (tbEnterpriseType.isEmpty()) {
|
|
|
+ return error("数据不得为空");
|
|
|
+ }
|
|
|
+ boolean result = enterpriseTypeService.batchTbEnterpriseType(tbEnterpriseType);
|
|
|
+ return result ? success() : error();
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("企业分类模板")
|
|
|
+ @PostMapping("/importTemplate")
|
|
|
+ public void importTemplate(HttpServletResponse response)
|
|
|
+ {
|
|
|
+ ExcelUtil<EnterpriseType> util = new ExcelUtil<>(EnterpriseType.class);
|
|
|
+ util.importTemplateExcel(response, "企业分类数据");
|
|
|
+ }
|
|
|
}
|