IBZNotifyFallback.java.ftl 724 字节
Newer Older
zhouweidong's avatar
zhouweidong committed
1 2 3 4 5
<#ibiztemplate>
TARGET=PSSYSTEM
</#ibiztemplate>
package ${pub.getPKGCodeName()}.util.client;

6
import ${pub.getPKGCodeName()}.util.domain.MsgBody;
zhouweidong's avatar
zhouweidong committed
7 8 9 10 11 12 13
import com.alibaba.fastjson.JSONObject;
import org.springframework.stereotype.Component;

@Component
public class IBZNotifyFallback implements IBZNotifyFeignClient {

	@Override
14
	public Boolean sendMsg(MsgBody msg) {
zhouweidong's avatar
zhouweidong committed
15 16 17 18 19 20 21
		return null;
	}

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

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

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

	@Override
	public Boolean finishDingTalkWorkRecord(String msgId) {
		return null;
	}
zhouweidong's avatar
zhouweidong committed
37
}