IBZNotifyFallback.java 649 字节
Newer Older
1 2
package cn.ibizlab.util.client;

3
import cn.ibizlab.util.domain.MsgBody;
4 5 6 7 8 9 10
import com.alibaba.fastjson.JSONObject;
import org.springframework.stereotype.Component;

@Component
public class IBZNotifyFallback implements IBZNotifyFeignClient {

	@Override
11
	public Boolean sendMsg(MsgBody msg) {
12 13 14 15 16 17 18
		return null;
	}

	@Override
	public Boolean createMsgTemplate(JSONObject template) {
		return null;
	}
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33

	@Override
	public Boolean sendDingTalkLinkMsg(MsgBody msg) {
		return null;
	}

	@Override
	public String createDingTalkWorkRecord(MsgBody msg) {
		return null;
	}

	@Override
	public Boolean finishDingTalkWorkRecord(String msgId) {
		return null;
	}
34
}