Browse Source

完善接口

chenchen 5 months ago
parent
commit
dd1f28e69c

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

@@ -23,6 +23,7 @@ import lombok.extern.slf4j.Slf4j;
 import org.junit.Test;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
 import org.springframework.util.CollectionUtils;
 import java.util.ArrayList;
 import java.util.List;
@@ -292,6 +293,7 @@ public class BasicToWebServiceImpl implements BasicToWebService
     }
 
     @Override
+    @Transactional
     public void userLikeTravelNotesUpdate(Long travelNotesId,Integer type){
 
         TourUserLikeTravelNotes tourUserLikeTravelNotes =
@@ -310,7 +312,7 @@ public class BasicToWebServiceImpl implements BasicToWebService
         }else {
             tourUserLikeTravelNotesService.saveNew(tourUserLikeTravelNotes);
         }
-        tourTourismProjectTravelNotesService.save(tourTourismProjectTravelNotes);
+        tourTourismProjectTravelNotesService.updateById(tourTourismProjectTravelNotes);
     }
 
     @Override

+ 8 - 4
application-webadmin/src/main/java/com/tourism/webadmin/app/wechat/controller/TakeOutProjectController.java

@@ -1,5 +1,6 @@
 package com.tourism.webadmin.app.wechat.controller;
 
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import com.github.pagehelper.page.PageMethod;
 import com.tourism.common.additional.utils.StringUtils;
 import com.tourism.common.additional.utils.UrlConvertUtils;
@@ -196,10 +197,13 @@ public class TakeOutProjectController {
 
         //小程序看到的为启用的店铺
 
-        RestaurantInfo filter = new RestaurantInfo();
-        filter.setId(id);
-        filter.setEnable(1);
-        RestaurantInfo restaurantInfo = restaurantInfoService.getOne(filter);
+//        RestaurantInfo filter = new RestaurantInfo();
+//        filter.setId(id);
+//        filter.setEnable(1);
+        QueryWrapper queryWrapper = new QueryWrapper();
+        queryWrapper.eq("id",id);
+        queryWrapper.eq("enable",1);
+        RestaurantInfo restaurantInfo = restaurantInfoService.getOne(queryWrapper);
         RestaurantInfoVo restaurantInfoVo = MyModelUtil.copyTo(restaurantInfo, RestaurantInfoVo.class);
         if(StringUtils.isNotEmpty(restaurantInfoVo.getUrl())) {
             List<String> arrayList2 = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), restaurantInfoVo.getId(), restaurantInfoVo.getUrl(), "url");

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

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