Skip to content

Commit

Permalink
add DMService id
Browse files Browse the repository at this point in the history
  • Loading branch information
dzh committed Aug 19, 2022
1 parent 7935257 commit 7f0d98a
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,20 @@
import com.aliyuncs.dm.model.v20151123.SingleSendMailRequest;
import com.aliyuncs.dm.model.v20151123.SingleSendMailResponse;
import com.aliyuncs.exceptions.ClientException;

import jframe.core.plugin.annotation.Service;

/**
* 邮件推送服务
*
*
* @author dzh
* @date Dec 10, 2018 1:46:37 PM
* @version 0.0.1
* @date Dec 10, 2018 1:46:37 PM
*/
@Service(clazz = "jframe.aliyun.service.dm.DMServiceImpl", id = "jframe.service.aliyun.dm")
@Service(clazz = "jframe.aliyun.service.dm.DMServiceImpl", id = DMService.ID)
public interface DMService {

String ID = "jframe.service.aliyun.dm";

SingleSendMailResponse singleSend(String id, SingleSendMailRequest request) throws ClientException;

}

0 comments on commit 7f0d98a

Please sign in to comment.