审查视图

src/main/java/com/sy/service/impl/MessageServiceHystrix.java 525 字节
xudada authored
1 2 3 4
package com.sy.service.impl;

import com.sy.model.AdvanceArrive;
import com.sy.service.FeignService;
5
import lombok.extern.slf4j.Slf4j;
xudada authored
6 7 8 9 10 11 12 13 14 15 16
import org.springframework.stereotype.Service;

import java.util.Map;

/**
 * @author
 * @time 2020-03-05 11:45
 * @desc
 * @email vokes0069@163.com
 */
@Service
17
@Slf4j
xudada authored
18 19 20 21 22 23
public class MessageServiceHystrix implements FeignService {



    @Override
    public Map<String, Object> sendMessage(AdvanceArrive arrive) {
24
        log.info("发送数据成功",arrive);
xudada authored
25 26 27
        return null;
    }
}