luofl
2025-02-24 199861555473ab50f2fafa3d58e42e64e838c039
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/ShopPointClientFallbackFactory.java
@@ -2,6 +2,7 @@
import com.ruoyi.common.core.domain.R;
import com.ruoyi.other.api.domain.ShopPoint;
import com.ruoyi.other.api.domain.ShopPointCopy;
import com.ruoyi.other.api.feignClient.ShopPointClient;
import org.springframework.cloud.openfeign.FallbackFactory;
@@ -18,6 +19,16 @@
         public void saveShopPoint(ShopPoint shopPoint) {
            R.fail("保存门店积分流水失败:" + cause.getMessage());
         }
         @Override
         public void saveShopPoint(ShopPointCopy shopPoint) {
            R.fail("保存门店积分流水失败:" + cause.getMessage());
         }
         @Override
         public void deleteShopPointCopy(Long orderId) {
         }
      };
   }
}