|
@@ -0,0 +1,276 @@
|
|
|
+package com.tourism.webadmin.back.controller;
|
|
|
+
|
|
|
+import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
+import cn.dev33.satoken.annotation.SaIgnore;
|
|
|
+import com.ibm.icu.text.Transliterator;
|
|
|
+import com.tourism.common.log.annotation.OperationLog;
|
|
|
+import com.tourism.common.log.model.constant.SysOperationLogType;
|
|
|
+import com.github.pagehelper.page.PageMethod;
|
|
|
+import com.tourism.common.core.object.*;
|
|
|
+import com.tourism.common.core.util.*;
|
|
|
+import com.tourism.common.core.constant.*;
|
|
|
+import com.tourism.common.core.annotation.MyRequestBody;
|
|
|
+import com.tourism.webadmin.back.dto.TourCountryCodeDto;
|
|
|
+import com.tourism.webadmin.back.model.TourCountryCode;
|
|
|
+import com.tourism.webadmin.back.service.TourCountryCodeService;
|
|
|
+import com.tourism.webadmin.back.vo.TourCountryCodeVo;
|
|
|
+import com.tourism.webadmin.config.ApplicationConfig;
|
|
|
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
+
|
|
|
+import java.io.IOException;
|
|
|
+import java.util.*;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 国家地区代码表操作控制器类。
|
|
|
+ *
|
|
|
+ * @author 吃饭睡觉
|
|
|
+ * @date 2024-09-06
|
|
|
+ */
|
|
|
+@Tag(name = "国家地区代码表管理接口")
|
|
|
+@Slf4j
|
|
|
+@RestController
|
|
|
+@RequestMapping("/admin/app/tourCountryCode")
|
|
|
+public class TourCountryCodeController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ApplicationConfig appConfig;
|
|
|
+ @Autowired
|
|
|
+ private TourCountryCodeService tourCountryCodeService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增国家地区代码表数据。
|
|
|
+ *
|
|
|
+ * @param tourCountryCodeDto 新增对象。
|
|
|
+ * @return 应答结果对象,包含新增对象主键Id。
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(ignoreParameters = {"tourCountryCodeDto.id"})
|
|
|
+ @SaCheckPermission("tourCountryCode.add")
|
|
|
+ @OperationLog(type = SysOperationLogType.ADD)
|
|
|
+ @PostMapping("/add")
|
|
|
+ public ResponseResult<Long> add(@MyRequestBody TourCountryCodeDto tourCountryCodeDto) {
|
|
|
+ String errorMessage = MyCommonUtil.getModelValidationError(tourCountryCodeDto, false);
|
|
|
+ if (errorMessage != null) {
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
+ }
|
|
|
+ TourCountryCode tourCountryCode = MyModelUtil.copyTo(tourCountryCodeDto, TourCountryCode.class);
|
|
|
+ tourCountryCode = tourCountryCodeService.saveNew(tourCountryCode);
|
|
|
+ return ResponseResult.success(tourCountryCode.getId());
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新国家地区代码表数据。
|
|
|
+ *
|
|
|
+ * @param tourCountryCodeDto 更新对象。
|
|
|
+ * @return 应答结果对象。
|
|
|
+ */
|
|
|
+ @SaCheckPermission("tourCountryCode.update")
|
|
|
+ @OperationLog(type = SysOperationLogType.UPDATE)
|
|
|
+ @PostMapping("/update")
|
|
|
+ public ResponseResult<Void> update(@MyRequestBody TourCountryCodeDto tourCountryCodeDto) {
|
|
|
+ String errorMessage = MyCommonUtil.getModelValidationError(tourCountryCodeDto, true);
|
|
|
+ if (errorMessage != null) {
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
+ }
|
|
|
+ TourCountryCode tourCountryCode = MyModelUtil.copyTo(tourCountryCodeDto, TourCountryCode.class);
|
|
|
+ TourCountryCode originalTourCountryCode = tourCountryCodeService.getById(tourCountryCode.getId());
|
|
|
+ if (originalTourCountryCode == null) {
|
|
|
+ // NOTE: 修改下面方括号中的话述
|
|
|
+ errorMessage = "数据验证失败,当前 [数据] 并不存在,请刷新后重试!";
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST, errorMessage);
|
|
|
+ }
|
|
|
+ if (!tourCountryCodeService.update(tourCountryCode, originalTourCountryCode)) {
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
+ }
|
|
|
+ return ResponseResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除国家地区代码表数据。
|
|
|
+ *
|
|
|
+ * @param id 删除对象主键Id。
|
|
|
+ * @return 应答结果对象。
|
|
|
+ */
|
|
|
+ @SaCheckPermission("tourCountryCode.delete")
|
|
|
+ @OperationLog(type = SysOperationLogType.DELETE)
|
|
|
+ @PostMapping("/delete")
|
|
|
+ public ResponseResult<Void> delete(@MyRequestBody Long id) {
|
|
|
+ if (MyCommonUtil.existBlankArgument(id)) {
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST);
|
|
|
+ }
|
|
|
+ return this.doDelete(id);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批量删除国家地区代码表数据。
|
|
|
+ *
|
|
|
+ * @param idList 待删除对象的主键Id列表。
|
|
|
+ * @return 应答结果对象。
|
|
|
+ */
|
|
|
+ @SaCheckPermission("tourCountryCode.delete")
|
|
|
+ @OperationLog(type = SysOperationLogType.DELETE_BATCH)
|
|
|
+ @PostMapping("/deleteBatch")
|
|
|
+ public ResponseResult<Void> deleteBatch(@MyRequestBody List<Long> idList) {
|
|
|
+ if (MyCommonUtil.existBlankArgument(idList)) {
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST);
|
|
|
+ }
|
|
|
+ for (Long id : idList) {
|
|
|
+ ResponseResult<Void> responseResult = this.doDelete(id);
|
|
|
+ if (!responseResult.isSuccess()) {
|
|
|
+ return responseResult;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return ResponseResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 列出符合过滤条件的国家地区代码表列表。
|
|
|
+ *
|
|
|
+ * @param tourCountryCodeDtoFilter 过滤对象。
|
|
|
+ * @param orderParam 排序参数。
|
|
|
+ * @param pageParam 分页参数。
|
|
|
+ * @return 应答结果对象,包含查询结果集。
|
|
|
+ */
|
|
|
+ @SaCheckPermission("tourCountryCode.view")
|
|
|
+ @PostMapping("/list")
|
|
|
+ public ResponseResult<MyPageData<TourCountryCodeVo>> list(
|
|
|
+ @MyRequestBody TourCountryCodeDto tourCountryCodeDtoFilter,
|
|
|
+ @MyRequestBody MyOrderParam orderParam,
|
|
|
+ @MyRequestBody MyPageParam pageParam) {
|
|
|
+ if (pageParam != null) {
|
|
|
+ PageMethod.startPage(pageParam.getPageNum(), pageParam.getPageSize(), pageParam.getCount());
|
|
|
+ }
|
|
|
+ TourCountryCode tourCountryCodeFilter = MyModelUtil.copyTo(tourCountryCodeDtoFilter, TourCountryCode.class);
|
|
|
+ String orderBy = MyOrderParam.buildOrderBy(orderParam, TourCountryCode.class);
|
|
|
+ List<TourCountryCode> tourCountryCodeList =
|
|
|
+ tourCountryCodeService.getTourCountryCodeListWithRelation(tourCountryCodeFilter, orderBy);
|
|
|
+ return ResponseResult.success(MyPageUtil.makeResponseData(tourCountryCodeList, TourCountryCodeVo.class));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导入主表数据列表。
|
|
|
+ *
|
|
|
+ * @param importFile 上传的文件,目前仅仅支持xlsx和xls两种格式。
|
|
|
+ * @return 应答结果对象。
|
|
|
+ */
|
|
|
+ @SaCheckPermission("tourCountryCode.import")
|
|
|
+ @OperationLog(type = SysOperationLogType.IMPORT)
|
|
|
+ @PostMapping("/import")
|
|
|
+ public ResponseResult<Void> importBatch(
|
|
|
+ @RequestParam Boolean skipHeader,
|
|
|
+ @RequestParam("importFile") MultipartFile importFile) throws IOException {
|
|
|
+ String filename = ImportUtil.saveImportFile(appConfig.getUploadFileBaseDir(), null, importFile);
|
|
|
+ // 这里可以指定需要忽略导入的字段集合。如创建时间、创建人、更新时间、更新人、主键Id和逻辑删除,
|
|
|
+ // 以及一些存在缺省值且无需导入的字段。其中主键字段和逻辑删除字段不需要在这里设置,批量插入逻辑会自动处理的。
|
|
|
+ Set<String> ignoreFieldSet = new HashSet<>();
|
|
|
+ ignoreFieldSet.add("createUserId");
|
|
|
+ ignoreFieldSet.add("createTime");
|
|
|
+ ignoreFieldSet.add("updateUserId");
|
|
|
+ ignoreFieldSet.add("updateTime");
|
|
|
+ List<ImportUtil.ImportHeaderInfo> headerInfoList = ImportUtil.makeHeaderInfoList(TourCountryCode.class, ignoreFieldSet);
|
|
|
+ // 下面是导入时需要注意的地方,如果我们缺省生成的代码,与实际情况存在差异,请手动修改。
|
|
|
+ // 1. 头信息数据字段,我们只是根据当前的主表实体对象生成了缺省数组,开发者可根据实际情况,对headerInfoList进行修改。
|
|
|
+ ImportUtil.ImportHeaderInfo[] headerInfos = headerInfoList.toArray(new ImportUtil.ImportHeaderInfo[]{});
|
|
|
+ // 2. 这里需要根据实际情况决定,导入文件中第一行是否为中文头信息,如果是可以跳过。这里我们默认为true。
|
|
|
+ // 这里根据自己的实际需求,为doImport的最后一个参数,传递需要进行字典转换的字段集合。
|
|
|
+ // 注意,集合中包含需要翻译的Java字段名,如: gradeId。
|
|
|
+ Set<String> translatedDictFieldSet = new HashSet<>();
|
|
|
+ List<TourCountryCode> dataList =
|
|
|
+ ImportUtil.doImport(headerInfos, skipHeader, filename, TourCountryCode.class, translatedDictFieldSet);
|
|
|
+ tourCountryCodeService.saveNewBatch(dataList, -1);
|
|
|
+ return ResponseResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导出符合过滤条件的国家地区代码表列表。
|
|
|
+ *
|
|
|
+ * @param tourCountryCodeDtoFilter 过滤对象。
|
|
|
+ * @param orderParam 排序参数。
|
|
|
+ * @throws IOException 文件读写失败。
|
|
|
+ */
|
|
|
+ @SaCheckPermission("tourCountryCode.export")
|
|
|
+ @OperationLog(type = SysOperationLogType.EXPORT, saveResponse = false)
|
|
|
+ @PostMapping("/export")
|
|
|
+ public void export(
|
|
|
+ @MyRequestBody TourCountryCodeDto tourCountryCodeDtoFilter,
|
|
|
+ @MyRequestBody MyOrderParam orderParam) throws IOException {
|
|
|
+ TourCountryCode tourCountryCodeFilter = MyModelUtil.copyTo(tourCountryCodeDtoFilter, TourCountryCode.class);
|
|
|
+ String orderBy = MyOrderParam.buildOrderBy(orderParam, TourCountryCode.class);
|
|
|
+ List<TourCountryCode> resultList =
|
|
|
+ tourCountryCodeService.getTourCountryCodeListWithRelation(tourCountryCodeFilter, orderBy);
|
|
|
+ // 导出文件的标题数组
|
|
|
+ // NOTE: 下面的代码中仅仅导出了主表数据,主表聚合计算数据和主表关联字典的数据。
|
|
|
+ // 一对一从表数据的导出,可根据需要自行添加。如:headerMap.put("slaveFieldName.xxxField", "标题名称")
|
|
|
+ Map<String, String> headerMap = new LinkedHashMap<>(12);
|
|
|
+ headerMap.put("id", "主键");
|
|
|
+ headerMap.put("englishName", "英文名称");
|
|
|
+ headerMap.put("country", "国家/地区");
|
|
|
+ headerMap.put("countryCode", "国家代码");
|
|
|
+ headerMap.put("areaCode", "区号");
|
|
|
+ headerMap.put("dataState", "数据状态");
|
|
|
+ headerMap.put("pinYin", "拼音");
|
|
|
+ headerMap.put("createUserId", "创建用户");
|
|
|
+ headerMap.put("firstCode", "拼音首字母");
|
|
|
+ headerMap.put("createTime", "创建时间");
|
|
|
+ headerMap.put("updateUserId", "更新用户");
|
|
|
+ headerMap.put("updateTime", "更新时间");
|
|
|
+ ExportUtil.doExport(resultList, headerMap, "tourCountryCode.xlsx");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查看指定国家地区代码表对象详情。
|
|
|
+ *
|
|
|
+ * @param id 指定对象主键Id。
|
|
|
+ * @return 应答结果对象,包含对象详情。
|
|
|
+ */
|
|
|
+ @SaCheckPermission("tourCountryCode.view")
|
|
|
+ @GetMapping("/view")
|
|
|
+ public ResponseResult<TourCountryCodeVo> view(@RequestParam Long id) {
|
|
|
+ TourCountryCode tourCountryCode = tourCountryCodeService.getByIdWithRelation(id, MyRelationParam.full());
|
|
|
+ if (tourCountryCode == null) {
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
+ }
|
|
|
+ TourCountryCodeVo tourCountryCodeVo = MyModelUtil.copyTo(tourCountryCode, TourCountryCodeVo.class);
|
|
|
+ return ResponseResult.success(tourCountryCodeVo);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询tour_country_code表的数据,把country汉字翻译成拼音和拼音首字母,分别填充到pin_yin和first_code字段上
|
|
|
+ */
|
|
|
+ @SaIgnore
|
|
|
+ @GetMapping("gener")
|
|
|
+ public void gerner(){
|
|
|
+ List<TourCountryCode> tourCountryCodeList = tourCountryCodeService.list();
|
|
|
+ Transliterator transliterator = Transliterator.getInstance("Han-Latin; NFD; [:Nonspacing Mark:] Remove; NFC");
|
|
|
+ tourCountryCodeList.forEach(tourCountryCode -> {
|
|
|
+ String country = tourCountryCode.getCountry();
|
|
|
+
|
|
|
+ String pinYin = transliterator.transliterate(country).replaceAll("\\s+", "").toUpperCase();
|
|
|
+// String pinYin = PinYinUtil.getPinYin(country);
|
|
|
+ String firstCode = pinYin.substring(0, 1);
|
|
|
+ tourCountryCode.setPinYin(pinYin);
|
|
|
+ tourCountryCode.setFirstCode(firstCode);
|
|
|
+ });
|
|
|
+ tourCountryCodeService.updateBatch(tourCountryCodeList);
|
|
|
+ }
|
|
|
+
|
|
|
+ private ResponseResult<Void> doDelete(Long id) {
|
|
|
+ String errorMessage;
|
|
|
+ // 验证关联Id的数据合法性
|
|
|
+ TourCountryCode originalTourCountryCode = tourCountryCodeService.getById(id);
|
|
|
+ if (originalTourCountryCode == null) {
|
|
|
+ // NOTE: 修改下面方括号中的话述
|
|
|
+ errorMessage = "数据验证失败,当前 [对象] 并不存在,请刷新后重试!";
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST, errorMessage);
|
|
|
+ }
|
|
|
+ if (!tourCountryCodeService.remove(id)) {
|
|
|
+ errorMessage = "数据操作失败,删除的对象不存在,请刷新后重试!";
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST, errorMessage);
|
|
|
+ }
|
|
|
+ return ResponseResult.success();
|
|
|
+ }
|
|
|
+}
|