Эх сурвалжийг харах

Merge remote-tracking branch 'origin/v0.1' into v0.1

chenchen 5 сар өмнө
parent
commit
7aebf457c0
22 өөрчлөгдсөн 931 нэмэгдсэн , 17 устгасан
  1. 7 0
      application-webadmin/pom.xml
  2. 32 4
      application-webadmin/src/main/java/com/tourism/webadmin/app/website/controller/LoginToWebsiteController.java
  3. 5 4
      application-webadmin/src/main/java/com/tourism/webadmin/app/website/service/impl/BasicToWebServiceImpl.java
  4. 3 0
      application-webadmin/src/main/java/com/tourism/webadmin/app/wechat/controller/WechatDeliveryAddressController.java
  5. 6 3
      application-webadmin/src/main/java/com/tourism/webadmin/app/wechat/controller/WechatDeliveryOrderController.java
  6. 276 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/controller/TourCountryCodeController.java
  7. 1 1
      application-webadmin/src/main/java/com/tourism/webadmin/back/dao/DeliveryAddressMapper.java
  8. 2 3
      application-webadmin/src/main/java/com/tourism/webadmin/back/dao/DeliveryOrderItemsMapper.java
  9. 1 1
      application-webadmin/src/main/java/com/tourism/webadmin/back/dao/DeliveryOrderMapper.java
  10. 33 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/dao/TourCountryCodeMapper.java
  11. 4 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/dao/mapper/DeliveryAddressMapper.xml
  12. 4 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/dao/mapper/DeliveryOrderMapper.xml
  13. 87 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/dao/mapper/TourCountryCodeMapper.xml
  14. 2 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/dto/DeliveryAddressWebDto.java
  15. 72 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/dto/TourCountryCodeDto.java
  16. 66 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/model/TourCountryCode.java
  17. 78 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/service/TourCountryCodeService.java
  18. 138 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/service/impl/TourCountryCodeServiceImpl.java
  19. 44 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/util/SMSUtils.java
  20. 1 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/vo/DeliveryAddressVo.java
  21. 1 1
      application-webadmin/src/main/java/com/tourism/webadmin/back/vo/DeliveryOrderVo.java
  22. 68 0
      application-webadmin/src/main/java/com/tourism/webadmin/back/vo/TourCountryCodeVo.java

+ 7 - 0
application-webadmin/pom.xml

@@ -110,6 +110,13 @@
             <version>1.0.105</version>
         </dependency>
 
+        <dependency>
+            <groupId>com.ibm.icu</groupId>
+            <artifactId>icu4j</artifactId>
+            <version>69.1</version>
+        </dependency>
+
+
         <!--        <dependency>-->
 <!--            <groupId>com.anji-plus</groupId>-->
 <!--            <artifactId>spring-boot-starter-captcha</artifactId>-->

+ 32 - 4
application-webadmin/src/main/java/com/tourism/webadmin/app/website/controller/LoginToWebsiteController.java

@@ -3,6 +3,7 @@ package com.tourism.webadmin.app.website.controller;
 import cn.binarywang.wx.miniapp.api.WxMaService;
 import cn.binarywang.wx.miniapp.api.WxMaUserService;
 import cn.binarywang.wx.miniapp.bean.WxMaPhoneNumberInfo;
+import cn.dev33.satoken.annotation.SaCheckPermission;
 import cn.dev33.satoken.annotation.SaIgnore;
 import cn.dev33.satoken.session.SaSession;
 import cn.dev33.satoken.stp.StpUtil;
@@ -14,6 +15,8 @@ import com.alibaba.fastjson.JSON;
 import com.alibaba.fastjson.JSONArray;
 import com.alibaba.fastjson.JSONObject;
 import com.baomidou.mybatisplus.core.toolkit.Wrappers;
+import com.github.pagehelper.page.PageMethod;
+import com.ibm.icu.text.Transliterator;
 import com.tourism.common.additional.constant.CacheConstants;
 import com.tourism.common.additional.constant.Constants;
 import com.tourism.common.additional.model.AjaxResult;
@@ -21,9 +24,7 @@ import com.tourism.common.additional.sign.Base64;
 import com.tourism.common.additional.uuid.IdUtils;
 import com.tourism.common.core.constant.ApplicationConstant;
 import com.tourism.common.core.constant.ErrorCodeEnum;
-import com.tourism.common.core.object.LoginUserInfo;
-import com.tourism.common.core.object.ResponseResult;
-import com.tourism.common.core.object.TokenData;
+import com.tourism.common.core.object.*;
 import com.tourism.common.core.upload.BaseUpDownloader;
 import com.tourism.common.core.upload.UpDownloaderFactory;
 import com.tourism.common.core.upload.UploadResponseInfo;
@@ -37,10 +38,15 @@ import com.tourism.webadmin.app.website.dto.CheckImageDto;
 import com.tourism.webadmin.app.website.vo.WebSiteCaptchaImageVo;
 import com.tourism.webadmin.back.dto.TourBookInfoDto;
 import com.tourism.webadmin.app.website.dto.TourUserRegisterDto;
+import com.tourism.webadmin.back.dto.TourCountryCodeDto;
+import com.tourism.webadmin.back.model.TourCountryCode;
 import com.tourism.webadmin.back.model.TourUser;
 import com.tourism.webadmin.back.model.constant.TourUserStatus;
 import com.tourism.webadmin.app.website.service.LoginToWebsiteService;
+import com.tourism.webadmin.back.service.TourCountryCodeService;
 import com.tourism.webadmin.back.service.TourUserService;
+import com.tourism.webadmin.back.util.SMSUtils;
+import com.tourism.webadmin.back.vo.TourCountryCodeVo;
 import com.tourism.webadmin.config.ApplicationConfig;
 import com.tourism.webadmin.upms.model.SysUser;
 import io.swagger.v3.oas.annotations.tags.Tag;
@@ -70,6 +76,8 @@ import java.net.URLDecoder;
 import java.nio.charset.StandardCharsets;
 import java.util.*;
 import java.util.concurrent.TimeUnit;
+import java.util.stream.Collectors;
+
 import com.tourism.common.core.annotation.MyRequestBody;
 import org.springframework.web.multipart.MultipartFile;
 
@@ -104,9 +112,28 @@ public class LoginToWebsiteController {
     @Autowired
     private WxMaService wxMaService;
 
+    @Autowired
+    private TourCountryCodeService tourCountryCodeService;
+
     private static final String SHOW_NAME_FIELD = "showName";
     private static final String HEAD_IMAGE_URL_FIELD = "headImageUrl";
 
+
+    /**
+     * 列出符合过滤条件的国家地区代码表列表。
+     *
+     * @return 应答结果对象,包含查询结果集。
+     */
+    @SaIgnore
+    @GetMapping("/list")
+    public ResponseResult<Map<String, List<TourCountryCode>>> list() {
+        List<TourCountryCode> tourCountryCodeList =
+                tourCountryCodeService.getTourCountryCodeList(new TourCountryCode(), "");
+        Map<String, List<TourCountryCode>> collect = tourCountryCodeList.stream().collect(Collectors.groupingBy(TourCountryCode::getFirstCode));
+        return ResponseResult.success(collect);
+    }
+
+
     /**
      * 门户网站留存信息
      */
@@ -190,7 +217,8 @@ public class LoginToWebsiteController {
         String random = String.valueOf(new Random().nextInt(9000) + 1000);
 //        String code = String.valueOf(rondom);
         // 校验成功后,发短信到手机
-        SmsResponse huawei = SmsFactory.getSmsBlend("huawei").sendMessage(checkImageDto.getPhoneNumber(), random);
+//        SmsResponse huawei = SmsFactory.getSmsBlend("huawei").sendMessage(checkImageDto.getPhoneNumber(), random);
+        SMSUtils.sendMsg(checkImageDto.getCountryCode(), checkImageDto.getPhoneNumber(), random);
         String smsCodeKey = CacheConstants.getSmsCodeKey(checkImageDto.getPhoneNumber());
         //5分钟有效时长
         redissonClient.getBucket(smsCodeKey).set(random, CacheConstants.getSmsEffectiveSeconds(), TimeUnit.SECONDS);

+ 5 - 4
application-webadmin/src/main/java/com/tourism/webadmin/app/website/service/impl/BasicToWebServiceImpl.java

@@ -4,7 +4,6 @@ import com.github.pagehelper.page.PageMethod;
 import com.tourism.common.additional.model.FileUrlObject;
 import com.tourism.common.additional.utils.JsonUtils;
 import com.tourism.common.additional.utils.StringUtils;
-import com.tourism.common.core.constant.ErrorCodeEnum;
 import com.tourism.common.core.object.*;
 import com.tourism.common.core.util.MyModelUtil;
 import com.tourism.common.core.util.MyPageUtil;
@@ -189,11 +188,11 @@ public class BasicToWebServiceImpl implements BasicToWebService
 
         TourTourismProjectTravelNotes tourTourismProjectTravelNotes = new TourTourismProjectTravelNotes();
 
-        if(tourismProjectTravelNotesToWebDto.getAreaId() == null && tourismProjectTravelNotesToWebDto.getCountryId() == null){
+        if(StringUtils.isEmpty(tourismProjectTravelNotesToWebDto.getAreaId()) && StringUtils.isEmpty(tourismProjectTravelNotesToWebDto.getCountryId())){
             //判断是否为全部的地区
             tourTourismProjectTravelNotes.setEnable(1);
             tourTourismProjectTravelNotes.setBelongTab(null);
-        }else if(tourismProjectTravelNotesToWebDto.getAreaId() != null && tourismProjectTravelNotesToWebDto.getCountryId() == null){
+        }else if(StringUtils.isNotEmpty(tourismProjectTravelNotesToWebDto.getAreaId()) && StringUtils.isEmpty(tourismProjectTravelNotesToWebDto.getCountryId())){
             //判断是否为该地区的所有国家
             DirectoryInfo directoryInfo = new DirectoryInfo();
             directoryInfo.setParentId(Long.parseLong(tourismProjectTravelNotesToWebDto.getAreaId()));
@@ -206,7 +205,9 @@ public class BasicToWebServiceImpl implements BasicToWebService
             tourTourismProjectTravelNotes.setDirectoryInfoIds(directoryIdList);
         }else {
             //如果查询的是某个国家的游记的话
-            tourTourismProjectTravelNotes.setBelongTab(Long.parseLong(tourismProjectTravelNotesToWebDto.getCountryId()));
+            if(StringUtils.isNotEmpty(tourismProjectTravelNotesToWebDto.getCountryId())) {
+                tourTourismProjectTravelNotes.setBelongTab(Long.parseLong(tourismProjectTravelNotesToWebDto.getCountryId()));
+            }
         }
 
         if(tourismProjectTravelNotesToWebDto.getPageNum() != null && tourismProjectTravelNotesToWebDto.getPageSize() != null) {

+ 3 - 0
application-webadmin/src/main/java/com/tourism/webadmin/app/wechat/controller/WechatDeliveryAddressController.java

@@ -7,6 +7,7 @@ import com.tourism.common.core.constant.ErrorCodeEnum;
 import com.tourism.common.core.object.MyPageData;
 import com.tourism.common.core.object.MyRelationParam;
 import com.tourism.common.core.object.ResponseResult;
+import com.tourism.common.core.object.TokenData;
 import com.tourism.common.core.util.MyCommonUtil;
 import com.tourism.common.core.util.MyModelUtil;
 import com.tourism.common.core.util.MyPageUtil;
@@ -135,6 +136,8 @@ public class WechatDeliveryAddressController {
             PageMethod.startPage(deliveryAddressDtoFilter.getPageNum(), deliveryAddressDtoFilter.getPageSize(), true);
         }
         DeliveryAddress deliveryAddressFilter = MyModelUtil.copyTo(deliveryAddressDtoFilter, DeliveryAddress.class);
+        Long userId = TokenData.takeFromRequest().getUserId();
+        deliveryAddressDtoFilter.setCreateUserId(userId);
 //        String orderBy = MyOrderParam.buildOrderBy(orderParam, DeliveryAddress.class);
         List<DeliveryAddress> deliveryAddressList =
                 deliveryAddressService.getDeliveryAddressListWithRelation(deliveryAddressFilter, "create_time");

+ 6 - 3
application-webadmin/src/main/java/com/tourism/webadmin/app/wechat/controller/WechatDeliveryOrderController.java

@@ -24,6 +24,7 @@ import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.*;
 
 import java.util.List;
+import java.util.Locale;
 import java.util.Map;
 import java.util.Set;
 import java.util.stream.Collectors;
@@ -46,7 +47,7 @@ public class WechatDeliveryOrderController {
      */
 //    @SaIgnore
     @PostMapping("/createOrder")
-    public ResponseResult<Long> createOrder(@MyRequestBody DeliveryOrderDto deliveryOrderDto,
+    public ResponseResult<String> createOrder(@MyRequestBody DeliveryOrderDto deliveryOrderDto,
                               @MyRequestBody List<DeliveryOrderItemsDto> deliveryOrderItemsDtoList) {
         ResponseResult<Tuple2<DeliveryOrder, JSONObject>> verifyResult =
                 this.doBusinessDataVerifyAndConvert(deliveryOrderDto, false, deliveryOrderItemsDtoList);
@@ -56,7 +57,7 @@ public class WechatDeliveryOrderController {
         Tuple2<DeliveryOrder, JSONObject> bizData = verifyResult.getData();
         DeliveryOrder deliveryOrder = bizData.getFirst();
         deliveryOrder = deliveryOrderService.saveNewWithRelation(deliveryOrder, bizData.getSecond());
-        return ResponseResult.success(deliveryOrder.getId());
+        return ResponseResult.success(deliveryOrder.getId().toString());
     }
 
     /**
@@ -69,6 +70,8 @@ public class WechatDeliveryOrderController {
             PageMethod.startPage(deliveryOrderDtoFilter.getPageNum(), deliveryOrderDtoFilter.getPageSize(), true);
         }
         DeliveryOrder deliveryOrderFilter = MyModelUtil.copyTo(deliveryOrderDtoFilter, DeliveryOrder.class);
+        Long userId = TokenData.takeFromRequest().getUserId();
+        deliveryOrderFilter.setCreateUserId(userId);
 //        String orderBy = MyOrderParam.buildOrderBy(orderParam, DeliveryOrder.class);
         List<DeliveryOrder> deliveryOrderList =
                 deliveryOrderService.getDeliveryOrderListWithRelation(deliveryOrderFilter, "create_time");
@@ -99,7 +102,7 @@ public class WechatDeliveryOrderController {
         }
         deliveryOrderService.maskFieldData(deliveryOrder, null);
         DeliveryOrderVo deliveryOrderVo = MyModelUtil.copyTo(deliveryOrder, DeliveryOrderVo.class);
-        DeliveryOrderItems build = DeliveryOrderItems.builder().orderId(deliveryOrderVo.getId()).build();
+        DeliveryOrderItems build = DeliveryOrderItems.builder().orderId(Long.valueOf(deliveryOrderVo.getId())).build();
         List<DeliveryOrderItems> items = deliveryOrderItemsService.getDeliveryOrderItemsList(build, "create_time");
         //items转为vo
         deliveryOrderVo.setItemList(MyModelUtil.copyCollectionTo(items, DeliveryOrderItemsVo.class));

+ 276 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/controller/TourCountryCodeController.java

@@ -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();
+    }
+}

+ 1 - 1
application-webadmin/src/main/java/com/tourism/webadmin/back/dao/DeliveryAddressMapper.java

@@ -13,7 +13,7 @@ import java.util.*;
  * @author 吃饭睡觉
  * @date 2024-09-06
  */
-@EnableDataPerm
+//@EnableDataPerm
 public interface DeliveryAddressMapper extends BaseDaoMapper<DeliveryAddress> {
 
     /**

+ 2 - 3
application-webadmin/src/main/java/com/tourism/webadmin/back/dao/DeliveryOrderItemsMapper.java

@@ -1,11 +1,10 @@
 package com.tourism.webadmin.back.dao;
 
-import com.tourism.common.core.annotation.EnableDataPerm;
 import com.tourism.common.core.base.dao.BaseDaoMapper;
 import com.tourism.webadmin.back.model.DeliveryOrderItems;
 import org.apache.ibatis.annotations.Param;
 
-import java.util.*;
+import java.util.List;
 
 /**
  * 外卖订单明细管理数据操作访问接口。
@@ -13,7 +12,7 @@ import java.util.*;
  * @author 吃饭睡觉
  * @date 2024-09-06
  */
-@EnableDataPerm
+//@EnableDataPerm
 public interface DeliveryOrderItemsMapper extends BaseDaoMapper<DeliveryOrderItems> {
 
     /**

+ 1 - 1
application-webadmin/src/main/java/com/tourism/webadmin/back/dao/DeliveryOrderMapper.java

@@ -13,7 +13,7 @@ import java.util.*;
  * @author 吃饭睡觉
  * @date 2024-09-06
  */
-@EnableDataPerm
+//@EnableDataPerm
 public interface DeliveryOrderMapper extends BaseDaoMapper<DeliveryOrder> {
 
     /**

+ 33 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/dao/TourCountryCodeMapper.java

@@ -0,0 +1,33 @@
+package com.tourism.webadmin.back.dao;
+
+import com.tourism.common.core.base.dao.BaseDaoMapper;
+import com.tourism.webadmin.back.model.TourCountryCode;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.*;
+
+/**
+ * 国家地区代码表数据操作访问接口。
+ *
+ * @author 吃饭睡觉
+ * @date 2024-09-06
+ */
+public interface TourCountryCodeMapper extends BaseDaoMapper<TourCountryCode> {
+
+    /**
+     * 批量插入对象列表。
+     *
+     * @param tourCountryCodeList 新增对象列表。
+     */
+    void insertList(List<TourCountryCode> tourCountryCodeList);
+
+    /**
+     * 获取过滤后的对象列表。
+     *
+     * @param tourCountryCodeFilter 主表过滤对象。
+     * @param orderBy 排序字符串,order by从句的参数。
+     * @return 对象列表。
+     */
+    List<TourCountryCode> getTourCountryCodeList(
+            @Param("tourCountryCodeFilter") TourCountryCode tourCountryCodeFilter, @Param("orderBy") String orderBy);
+}

+ 4 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/dao/mapper/DeliveryAddressMapper.xml

@@ -60,6 +60,10 @@
     <!-- 这里仅包含调用接口输入的主表过滤条件 -->
     <sql id="inputFilterRef">
         <if test="deliveryAddressFilter != null">
+            <!-- 用户id是否为空 -->
+            <if test="deliveryAddressFilter.createUserId != null">
+                AND update_user_id = #{deliveryAddressFilter.createUserId}
+            </if>
         </if>
     </sql>
 

+ 4 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/dao/mapper/DeliveryOrderMapper.xml

@@ -103,6 +103,10 @@
             <if test="deliveryOrderFilter.refundStatus != null">
                 AND tour_delivery_order.refund_status = #{deliveryOrderFilter.refundStatus}
             </if>
+            <!-- 用户id是否为空 -->
+            <if test="deliveryOrderFilter.createUserId != null">
+                AND update_user_id = #{deliveryAddressFilter.createUserId}
+            </if>
         </if>
     </sql>
 

+ 87 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/dao/mapper/TourCountryCodeMapper.xml

@@ -0,0 +1,87 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.tourism.webadmin.back.dao.TourCountryCodeMapper">
+    <resultMap id="BaseResultMap" type="com.tourism.webadmin.back.model.TourCountryCode">
+        <id column="id" jdbcType="BIGINT" property="id"/>
+        <result column="english_name" jdbcType="VARCHAR" property="englishName"/>
+        <result column="country" jdbcType="VARCHAR" property="country"/>
+        <result column="country_code" jdbcType="VARCHAR" property="countryCode"/>
+        <result column="area_code" jdbcType="VARCHAR" property="areaCode"/>
+        <result column="data_state" jdbcType="TINYINT" property="dataState"/>
+        <result column="pin_yin" jdbcType="VARCHAR" property="pinYin"/>
+        <result column="create_user_id" jdbcType="BIGINT" property="createUserId"/>
+        <result column="first_code" jdbcType="VARCHAR" property="firstCode"/>
+        <result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
+        <result column="update_user_id" jdbcType="BIGINT" property="updateUserId"/>
+        <result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
+    </resultMap>
+
+    <insert id="insertList">
+        INSERT INTO tour_country_code
+            (id,
+            english_name,
+            country,
+            country_code,
+            area_code,
+            data_state,
+            pin_yin,
+            create_user_id,
+            first_code,
+            create_time,
+            update_user_id,
+            update_time)
+        VALUES
+        <foreach collection="list" index="index" item="item" separator="," >
+            (#{item.id},
+            #{item.englishName},
+            #{item.country},
+            #{item.countryCode},
+            #{item.areaCode},
+            #{item.dataState},
+            #{item.pinYin},
+            #{item.createUserId},
+            #{item.firstCode},
+            #{item.createTime},
+            #{item.updateUserId},
+            #{item.updateTime})
+        </foreach>
+    </insert>
+
+    <!-- 如果有逻辑删除字段过滤,请写到这里 -->
+    <sql id="filterRef">
+        <!-- 这里必须加上全包名,否则当filterRef被其他Mapper.xml包含引用的时候,就会调用Mapper.xml中的该SQL片段 -->
+        <include refid="com.tourism.webadmin.back.dao.TourCountryCodeMapper.inputFilterRef"/>
+    </sql>
+
+    <!-- 这里仅包含调用接口输入的主表过滤条件 -->
+    <sql id="inputFilterRef">
+        <if test="tourCountryCodeFilter != null">
+            <if test="tourCountryCodeFilter.englishName != null and tourCountryCodeFilter.englishName != ''">
+                <bind name = "safeTourCountryCodeEnglishName" value = "'%' + tourCountryCodeFilter.englishName + '%'" />
+                AND tour_country_code.english_name LIKE #{safeTourCountryCodeEnglishName}
+            </if>
+            <if test="tourCountryCodeFilter.country != null and tourCountryCodeFilter.country != ''">
+                <bind name = "safeTourCountryCodeCountry" value = "'%' + tourCountryCodeFilter.country + '%'" />
+                AND tour_country_code.country LIKE #{safeTourCountryCodeCountry}
+            </if>
+            <if test="tourCountryCodeFilter.countryCode != null and tourCountryCodeFilter.countryCode != ''">
+                <bind name = "safeTourCountryCodeCountryCode" value = "'%' + tourCountryCodeFilter.countryCode + '%'" />
+                AND tour_country_code.country_code LIKE #{safeTourCountryCodeCountryCode}
+            </if>
+            <if test="tourCountryCodeFilter.firstCode != null and tourCountryCodeFilter.firstCode != ''">
+                <bind name = "safeTourCountryCodeFirstCode" value = "'%' + tourCountryCodeFilter.firstCode + '%'" />
+                AND tour_country_code.first_code LIKE #{safeTourCountryCodeFirstCode}
+            </if>
+        </if>
+    </sql>
+
+    <select id="getTourCountryCodeList" resultMap="BaseResultMap" parameterType="com.tourism.webadmin.back.model.TourCountryCode">
+        SELECT * FROM tour_country_code
+        <where>
+            <include refid="filterRef"/>
+        </where>
+        <if test="orderBy != null and orderBy != ''">
+            ORDER BY ${orderBy}
+        </if>
+    </select>
+</mapper>

+ 2 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/dto/DeliveryAddressWebDto.java

@@ -32,4 +32,6 @@ public class DeliveryAddressWebDto {
      */
     @Schema(description = "排序。")
     private MyOrderParam orderParamList;
+
+    private Long createUserId;
 }

+ 72 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/dto/TourCountryCodeDto.java

@@ -0,0 +1,72 @@
+package com.tourism.webadmin.back.dto;
+
+import com.tourism.common.core.validator.UpdateGroup;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+import jakarta.validation.constraints.*;
+
+/**
+ * 国家地区代码表Dto对象。
+ *
+ * @author 吃饭睡觉
+ * @date 2024-09-06
+ */
+@Schema(description = "TourCountryCodeDto对象")
+@Data
+public class TourCountryCodeDto {
+
+    /**
+     * 主键。
+     */
+    @Schema(description = "主键。", requiredMode = Schema.RequiredMode.REQUIRED)
+    @NotNull(message = "数据验证失败,主键不能为空!", groups = {UpdateGroup.class})
+    private Long id;
+
+    /**
+     * 英文名称。
+     * NOTE: 可支持等于操作符的列表数据过滤。
+     */
+    @Schema(description = "英文名称。可支持等于操作符的列表数据过滤。")
+    private String englishName;
+
+    /**
+     * 国家/地区。
+     * NOTE: 可支持等于操作符的列表数据过滤。
+     */
+    @Schema(description = "国家/地区。可支持等于操作符的列表数据过滤。")
+    private String country;
+
+    /**
+     * 国家代码。
+     * NOTE: 可支持等于操作符的列表数据过滤。
+     */
+    @Schema(description = "国家代码。可支持等于操作符的列表数据过滤。")
+    private String countryCode;
+
+    /**
+     * 区号。
+     */
+    @Schema(description = "区号。")
+    private String areaCode;
+
+    /**
+     * 数据状态。
+     */
+    @Schema(description = "数据状态。")
+    private Integer dataState;
+
+    /**
+     * 拼音。
+     */
+    @Schema(description = "拼音。")
+    private String pinYin;
+
+    /**
+     * 拼音首字母。
+     * NOTE: 可支持等于操作符的列表数据过滤。
+     */
+    @Schema(description = "拼音首字母。可支持等于操作符的列表数据过滤。")
+    private String firstCode;
+}

+ 66 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/model/TourCountryCode.java

@@ -0,0 +1,66 @@
+package com.tourism.webadmin.back.model;
+
+import com.baomidou.mybatisplus.annotation.*;
+import com.tourism.common.core.base.model.BaseModel;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 国家地区代码表实体对象。
+ *
+ * @author 吃饭睡觉
+ * @date 2024-09-06
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@TableName(value = "tour_country_code")
+public class TourCountryCode extends BaseModel {
+
+    /**
+     * 主键。
+     */
+    @TableId(value = "id")
+    private Long id;
+
+    /**
+     * 英文名称。
+     */
+    @TableField(value = "english_name")
+    private String englishName;
+
+    /**
+     * 国家/地区。
+     */
+    @TableField(value = "country")
+    private String country;
+
+    /**
+     * 国家代码。
+     */
+    @TableField(value = "country_code")
+    private String countryCode;
+
+    /**
+     * 区号。
+     */
+    @TableField(value = "area_code")
+    private String areaCode;
+
+    /**
+     * 数据状态。
+     */
+    @TableField(value = "data_state")
+    private Integer dataState;
+
+    /**
+     * 拼音。
+     */
+    @TableField(value = "pin_yin")
+    private String pinYin;
+
+    /**
+     * 拼音首字母。
+     */
+    @TableField(value = "first_code")
+    private String firstCode;
+}

+ 78 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/service/TourCountryCodeService.java

@@ -0,0 +1,78 @@
+package com.tourism.webadmin.back.service;
+
+import com.tourism.common.core.base.service.IBaseService;
+import com.tourism.webadmin.back.model.TourCountryCode;
+
+import java.util.*;
+
+/**
+ * 国家地区代码表数据操作服务接口。
+ *
+ * @author 吃饭睡觉
+ * @date 2024-09-06
+ */
+public interface TourCountryCodeService extends IBaseService<TourCountryCode, Long> {
+
+    /**
+     * 保存新增对象。
+     *
+     * @param tourCountryCode 新增对象。
+     * @return 返回新增对象。
+     */
+    TourCountryCode saveNew(TourCountryCode tourCountryCode);
+
+    /**
+     * 利用数据库的insertList语法,批量插入对象列表。
+     *
+     * @param tourCountryCodeList 新增对象列表。
+     */
+    void saveNewBatch(List<TourCountryCode> tourCountryCodeList);
+
+    /**
+     * 利用数据库的insertList语法,批量插入对象列表。通常适用于更大的插入数据量,如批量导入。
+     *
+     * @param tourCountryCodeList 新增对象列表。
+     * @param batchSize  每批插入的数量。如果该值小于等于0,则使用缺省值10000。
+     */
+    void saveNewBatch(List<TourCountryCode> tourCountryCodeList, int batchSize);
+
+    /**
+     * 更新数据对象。
+     *
+     * @param tourCountryCode         更新的对象。
+     * @param originalTourCountryCode 原有数据对象。
+     * @return 成功返回true,否则false。
+     */
+    boolean update(TourCountryCode tourCountryCode, TourCountryCode originalTourCountryCode);
+
+    /**
+     * 删除指定数据。
+     *
+     * @param id 主键Id。
+     * @return 成功返回true,否则false。
+     */
+    boolean remove(Long id);
+
+    /**
+     * 获取单表查询结果。由于没有关联数据查询,因此在仅仅获取单表数据的场景下,效率更高。
+     * 如果需要同时获取关联数据,请移步(getTourCountryCodeListWithRelation)方法。
+     *
+     * @param filter  过滤对象。
+     * @param orderBy 排序参数。
+     * @return 查询结果集。
+     */
+    List<TourCountryCode> getTourCountryCodeList(TourCountryCode filter, String orderBy);
+
+    /**
+     * 获取主表的查询结果,以及主表关联的字典数据和一对一从表数据,以及一对一从表的字典数据。
+     * 该查询会涉及到一对一从表的关联过滤,或一对多从表的嵌套关联过滤,因此性能不如单表过滤。
+     * 如果仅仅需要获取主表数据,请移步(getTourCountryCodeList),以便获取更好的查询性能。
+     *
+     * @param filter 主表过滤对象。
+     * @param orderBy 排序参数。
+     * @return 查询结果集。
+     */
+    List<TourCountryCode> getTourCountryCodeListWithRelation(TourCountryCode filter, String orderBy);
+
+    public void updateBatch(List<TourCountryCode> tourCountryCodeList);
+}

+ 138 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/service/impl/TourCountryCodeServiceImpl.java

@@ -0,0 +1,138 @@
+package com.tourism.webadmin.back.service.impl;
+
+import cn.hutool.core.collection.CollUtil;
+import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
+import com.tourism.common.core.base.dao.BaseDaoMapper;
+import com.tourism.common.core.base.service.BaseService;
+import com.tourism.webadmin.back.dao.TourCountryCodeMapper;
+import com.tourism.webadmin.back.model.TourCountryCode;
+import com.tourism.webadmin.back.service.TourCountryCodeService;
+import com.tourism.webadmin.config.DataSourceType;
+import com.tourism.common.core.annotation.MyDataSource;
+import com.tourism.common.core.object.MyRelationParam;
+import com.tourism.common.core.util.MyModelUtil;
+import com.tourism.common.sequence.wrapper.IdGeneratorWrapper;
+import com.github.pagehelper.Page;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.transaction.annotation.Transactional;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.*;
+
+/**
+ * 国家地区代码表数据操作服务类。
+ *
+ * @author 吃饭睡觉
+ * @date 2024-09-06
+ */
+@Slf4j
+@MyDataSource(DataSourceType.MAIN)
+@Service("tourCountryCodeService")
+public class TourCountryCodeServiceImpl extends BaseService<TourCountryCode, Long> implements TourCountryCodeService {
+
+    @Autowired
+    private IdGeneratorWrapper idGenerator;
+    @Autowired
+    private TourCountryCodeMapper tourCountryCodeMapper;
+
+    /**
+     * 返回当前Service的主表Mapper对象。
+     *
+     * @return 主表Mapper对象。
+     */
+    @Override
+    protected BaseDaoMapper<TourCountryCode> mapper() {
+        return tourCountryCodeMapper;
+    }
+
+    @Transactional(rollbackFor = Exception.class)
+    @Override
+    public TourCountryCode saveNew(TourCountryCode tourCountryCode) {
+        tourCountryCodeMapper.insert(this.buildDefaultValue(tourCountryCode));
+        return tourCountryCode;
+    }
+
+    @Transactional(rollbackFor = Exception.class)
+    @Override
+    public void saveNewBatch(List<TourCountryCode> tourCountryCodeList) {
+        if (CollUtil.isNotEmpty(tourCountryCodeList)) {
+            tourCountryCodeList.forEach(this::buildDefaultValue);
+            tourCountryCodeMapper.insertList(tourCountryCodeList);
+        }
+    }
+
+    @Transactional(rollbackFor = Exception.class)
+    @Override
+    public void saveNewBatch(List<TourCountryCode> tourCountryCodeList, int batchSize) {
+        if (CollUtil.isEmpty(tourCountryCodeList)) {
+            return;
+        }
+        if (batchSize <= 0) {
+            batchSize = 10000;
+        }
+        int start = 0;
+        do {
+            int end = Math.min(tourCountryCodeList.size(), start + batchSize);
+            List<TourCountryCode> subList = tourCountryCodeList.subList(start, end);
+            // 如果数据量过大,同时当前表中存在createTime或updateTime等字段,可以考虑在外部创建一次 new Date(),
+            // 然后传入buildDefaultValue,这样可以减少对象的创建次数,降低GC,提升效率。橙单之所以没有这样生成,是因为
+            // 有些业务场景下需要按照这两个日期字段排序,因此我们只是在这里给出优化建议。
+            subList.forEach(this::buildDefaultValue);
+            tourCountryCodeMapper.insertList(subList);
+            if (end == tourCountryCodeList.size()) {
+                break;
+            }
+            start += batchSize;
+        } while (true);
+    }
+
+    @Transactional(rollbackFor = Exception.class)
+    @Override
+    public boolean update(TourCountryCode tourCountryCode, TourCountryCode originalTourCountryCode) {
+        MyModelUtil.fillCommonsForUpdate(tourCountryCode, originalTourCountryCode);
+        // 这里重点提示,在执行主表数据更新之前,如果有哪些字段不支持修改操作,请用原有数据对象字段替换当前数据字段。
+        UpdateWrapper<TourCountryCode> uw = this.createUpdateQueryForNullValue(tourCountryCode, tourCountryCode.getId());
+        return tourCountryCodeMapper.update(tourCountryCode, uw) == 1;
+    }
+
+    @Transactional(rollbackFor = Exception.class)
+    @Override
+    public boolean remove(Long id) {
+        return tourCountryCodeMapper.deleteById(id) == 1;
+    }
+
+    @Override
+    public List<TourCountryCode> getTourCountryCodeList(TourCountryCode filter, String orderBy) {
+        return tourCountryCodeMapper.getTourCountryCodeList(filter, orderBy);
+    }
+
+    @Override
+    public List<TourCountryCode> getTourCountryCodeListWithRelation(TourCountryCode filter, String orderBy) {
+        List<TourCountryCode> resultList = tourCountryCodeMapper.getTourCountryCodeList(filter, orderBy);
+        // 在缺省生成的代码中,如果查询结果resultList不是Page对象,说明没有分页,那么就很可能是数据导出接口调用了当前方法。
+        // 为了避免一次性的大量数据关联,规避因此而造成的系统运行性能冲击,这里手动进行了分批次读取,开发者可按需修改该值。
+        int batchSize = resultList instanceof Page ? 0 : 1000;
+        this.buildRelationForDataList(resultList, MyRelationParam.normal(), batchSize);
+//        tourCountryCodeMapper.up
+        return resultList;
+    }
+
+    private TourCountryCode buildDefaultValue(TourCountryCode tourCountryCode) {
+        if (tourCountryCode.getId() == null) {
+            tourCountryCode.setId(idGenerator.nextLongId());
+        }
+        MyModelUtil.fillCommonsForInsert(tourCountryCode);
+        MyModelUtil.setDefaultValue(tourCountryCode, "pinYin", "");
+        MyModelUtil.setDefaultValue(tourCountryCode, "firstCode", "");
+        return tourCountryCode;
+    }
+
+    @Override
+    public void updateBatch(List<TourCountryCode> tourCountryCodeList) {
+        //更新表数据
+        tourCountryCodeList.forEach(e->{
+            tourCountryCodeMapper.updateById(e);
+        });
+    }
+}

+ 44 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/util/SMSUtils.java

@@ -0,0 +1,44 @@
+package com.tourism.webadmin.back.util;
+
+import com.alibaba.fastjson.JSON;
+import com.volcengine.model.request.SmsSendRequest;
+import com.volcengine.model.response.SmsSendResponse;
+import com.volcengine.service.sms.SmsService;
+import com.volcengine.service.sms.SmsServiceInfoConfig;
+import com.volcengine.service.sms.impl.SmsServiceImpl;
+
+import java.util.HashMap;
+import java.util.Map;
+
+public class SMSUtils {
+    private static final String AK = "AKLTYzA3ZDNiY2M5MWNlNGM1NThhM2ZlN2JhNTIyYWMxZDA";
+
+    private static final String SK = "WXpVME1USTBNbVprTnpKaU5HTTNORGhsT1dJNU1tUXlaVFl4TjJVeE1Uaw==";
+
+    private static SmsService smsService = SmsServiceImpl.getInstance(new SmsServiceInfoConfig(AK, SK));
+
+    public static void sendMsg(String countryCode, String phoneNumber, String code){
+        SmsSendRequest req = new SmsSendRequest();
+        req.setPhoneNumbers(countryCode.replaceAll("\\+", "") + phoneNumber);
+        if(countryCode.equals("86")){
+            req.setSmsAccount("7fe76339");
+            req.setTemplateId("ST_7ff7032d");
+            req.setSign("逍遥游");
+        }else {
+            req.setSmsAccount("7fe76339");
+            req.setTemplateId("ST_7fe70c7c");
+            req.setSign("XYTravel");
+        }
+
+        Map<String,String> param = new HashMap<>();
+        param.put("code", code);
+        req.setTemplateParamByMap(param);
+
+        try {
+            SmsSendResponse response = smsService.sendV2(req);
+            System.out.println(JSON.toJSONString(response));
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+    }
+}

+ 1 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/vo/DeliveryAddressVo.java

@@ -4,6 +4,7 @@ import com.tourism.common.core.base.vo.BaseVo;
 import io.swagger.v3.oas.annotations.media.Schema;
 import lombok.Data;
 import lombok.EqualsAndHashCode;
+import org.springframework.format.annotation.DateTimeFormat;
 
 import java.util.Date;
 

+ 1 - 1
application-webadmin/src/main/java/com/tourism/webadmin/back/vo/DeliveryOrderVo.java

@@ -24,7 +24,7 @@ public class DeliveryOrderVo extends BaseVo {
      * 主键。
      */
     @Schema(description = "主键")
-    private Long id;
+    private String id;
 
     /**
      * 配送时间。

+ 68 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/vo/TourCountryCodeVo.java

@@ -0,0 +1,68 @@
+package com.tourism.webadmin.back.vo;
+
+import com.tourism.common.core.base.vo.BaseVo;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+import java.util.Date;
+
+/**
+ * 国家地区代码表VO视图对象。
+ *
+ * @author 吃饭睡觉
+ * @date 2024-09-06
+ */
+@Schema(description = "TourCountryCodeVO视图对象")
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class TourCountryCodeVo extends BaseVo {
+
+    /**
+     * 主键。
+     */
+    @Schema(description = "主键")
+    private Long id;
+
+    /**
+     * 英文名称。
+     */
+    @Schema(description = "英文名称")
+    private String englishName;
+
+    /**
+     * 国家/地区。
+     */
+    @Schema(description = "国家/地区")
+    private String country;
+
+    /**
+     * 国家代码。
+     */
+    @Schema(description = "国家代码")
+    private String countryCode;
+
+    /**
+     * 区号。
+     */
+    @Schema(description = "区号")
+    private String areaCode;
+
+    /**
+     * 数据状态。
+     */
+    @Schema(description = "数据状态")
+    private Integer dataState;
+
+    /**
+     * 拼音。
+     */
+    @Schema(description = "拼音")
+    private String pinYin;
+
+    /**
+     * 拼音首字母。
+     */
+    @Schema(description = "拼音首字母")
+    private String firstCode;
+}