MsgUserMessageFeign.java 428 B

12345678910111213141516171819
  1. package com.xy.feign;
  2. import com.xy.FeignInterceptor;
  3. import com.xy.consts.ServiceConsts;
  4. import com.xy.service.MsgUserMessageService;
  5. import org.springframework.cloud.openfeign.FeignClient;
  6. /**
  7. * <p>
  8. * feign
  9. * </p>
  10. *
  11. * @author 谭斌
  12. * @since 2023-02-24
  13. */
  14. @FeignClient(value = ServiceConsts.SERVICE_NAME, configuration = FeignInterceptor.class)
  15. public interface MsgUserMessageFeign extends MsgUserMessageService {
  16. }