提交 | 用户 | age
|
6dde8c
|
1 |
package com.hz.sms.platform; |
童 |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.sms.dto.SmsGeneralSendDto; |
5ed8aa
|
5 |
import com.hz.sms.dto.mq.SmsMassegeMqDto; |
6dde8c
|
6 |
import org.springframework.cloud.openfeign.FeignClient; |
童 |
7 |
import org.springframework.web.bind.annotation.PostMapping; |
|
8 |
import org.springframework.web.bind.annotation.RequestBody; |
|
9 |
|
|
10 |
/** |
|
11 |
* 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
|
12 |
*/ |
15ab19
|
13 |
@FeignClient(name="phi-sms-rocketmq", path = "/sms-mq",contextId = "sms") |
6dde8c
|
14 |
public interface FSmsImmediatelyService { |
童 |
15 |
|
|
16 |
/** |
|
17 |
* 发送短信验证码 |
5ed8aa
|
18 |
* @param smsMassegeMqDto 消息体 |
6dde8c
|
19 |
* @return |
童 |
20 |
*/ |
1fcdf6
|
21 |
@PostMapping(value = "/sms/send/verification/code") |
5ed8aa
|
22 |
Result sendVerificationCode(@RequestBody SmsMassegeMqDto smsMassegeMqDto); |
6dde8c
|
23 |
|
童 |
24 |
/** |
|
25 |
* 发送通知短信 |
5ed8aa
|
26 |
* @param smsMassegeMqDto |
6dde8c
|
27 |
* @return |
童 |
28 |
*/ |
1fcdf6
|
29 |
@PostMapping(value = "/sms/send/notice") |
5ed8aa
|
30 |
Result sendNoticeSms(@RequestBody SmsMassegeMqDto smsMassegeMqDto); |
6dde8c
|
31 |
|
童 |
32 |
/** |
|
33 |
* 发送营销短信 |
5ed8aa
|
34 |
* @param smsMassegeMqDto |
6dde8c
|
35 |
* @return |
童 |
36 |
*/ |
1fcdf6
|
37 |
@PostMapping(value = "/sms/send/marketing") |
5ed8aa
|
38 |
Result sendMarketingSend(@RequestBody SmsMassegeMqDto smsMassegeMqDto); |
6dde8c
|
39 |
|
童 |
40 |
} |