|
|
@@ -16,23 +16,32 @@
|
|
|
*/
|
|
|
package org.springblade.modules.system.controller;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
import io.swagger.annotations.*;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import org.springblade.core.boot.ctrl.BladeController;
|
|
|
+import org.springblade.core.excel.util.ExcelUtil;
|
|
|
import org.springblade.core.launch.constant.AppConstant;
|
|
|
import org.springblade.core.mp.support.Condition;
|
|
|
import org.springblade.core.mp.support.Query;
|
|
|
import org.springblade.core.tool.api.R;
|
|
|
+import org.springblade.core.tool.utils.DateUtil;
|
|
|
import org.springblade.modules.system.entity.Region;
|
|
|
+import org.springblade.modules.system.excel.RegionExcel;
|
|
|
+import org.springblade.modules.system.excel.RegionImporter;
|
|
|
import org.springblade.modules.system.service.IRegionService;
|
|
|
import org.springblade.modules.system.vo.RegionVO;
|
|
|
import org.springblade.modules.system.wrapper.RegionWrapper;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
import javax.validation.Valid;
|
|
|
+import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
@@ -142,5 +151,51 @@ public class RegionController extends BladeController {
|
|
|
return R.status(regionService.removeRegion(id));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 行政区划下拉数据源
|
|
|
+ */
|
|
|
+ @GetMapping("/select")
|
|
|
+ @ApiOperationSupport(order = 9)
|
|
|
+ @ApiOperation(value = "下拉数据源", notes = "传入tenant")
|
|
|
+ public R<List<Region>> select(@RequestParam(required = false, defaultValue = "00") String code) {
|
|
|
+ List<Region> list = regionService.list(Wrappers.<Region>query().lambda().eq(Region::getParentCode, code));
|
|
|
+ return R.data(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导入行政区划数据
|
|
|
+ */
|
|
|
+ @PostMapping("import-region")
|
|
|
+ @ApiOperationSupport(order = 10)
|
|
|
+ @ApiOperation(value = "导入行政区划", notes = "传入excel")
|
|
|
+ public R importRegion(MultipartFile file, Integer isCovered) {
|
|
|
+ RegionImporter regionImporter = new RegionImporter(regionService, isCovered == 1);
|
|
|
+ ExcelUtil.save(file, regionImporter, RegionExcel.class);
|
|
|
+ return R.success("操作成功");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导出行政区划数据
|
|
|
+ */
|
|
|
+ @GetMapping("export-region")
|
|
|
+ @ApiOperationSupport(order = 11)
|
|
|
+ @ApiOperation(value = "导出行政区划", notes = "传入user")
|
|
|
+ public void exportRegion(@ApiIgnore @RequestParam Map<String, Object> region, HttpServletResponse response) {
|
|
|
+ QueryWrapper<Region> queryWrapper = Condition.getQueryWrapper(region, Region.class);
|
|
|
+ List<RegionExcel> list = regionService.exportRegion(queryWrapper);
|
|
|
+ ExcelUtil.export(response, "行政区划数据" + DateUtil.time(), "行政区划数据表", list, RegionExcel.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导出模板
|
|
|
+ */
|
|
|
+ @GetMapping("export-template")
|
|
|
+ @ApiOperationSupport(order = 12)
|
|
|
+ @ApiOperation(value = "导出模板")
|
|
|
+ public void exportUser(HttpServletResponse response) {
|
|
|
+ List<RegionExcel> list = new ArrayList<>();
|
|
|
+ ExcelUtil.export(response, "行政区划模板", "行政区划表", list, RegionExcel.class);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|