From 4ccb789782cb46c2d62ae5aa06b450d4cbc4af61 Mon Sep 17 00:00:00 2001 From: 童刚 <pBP8jclM@8yTJ@4h> Date: 星期三, 03 八月 2022 18:58:10 +0800 Subject: [PATCH] 111 --- phi-sms-feign/src/main/java/com/hz/sms/feign/FSmsSendService.java | 35 ++++++++++++++++++++++++++++++++++- 1 files changed, 34 insertions(+), 1 deletions(-) diff --git a/phi-sms-feign/src/main/java/com/hz/sms/feign/FSmsSendService.java b/phi-sms-feign/src/main/java/com/hz/sms/feign/FSmsSendService.java index 897ee71..319d3a0 100644 --- a/phi-sms-feign/src/main/java/com/hz/sms/feign/FSmsSendService.java +++ b/phi-sms-feign/src/main/java/com/hz/sms/feign/FSmsSendService.java @@ -1,15 +1,17 @@ package com.hz.sms.feign; import com.hx.resultTool.Result; +import com.hz.sms.dto.SmsGeneralSendDto; import com.hz.sms.dto.SmsSendDto; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.ResponseBody; /** * 杩欓噷杩欎釜name 闇�瑕佸~鍐� 璇锋眰鐨勬湇鍔℃彁渚涜�呯殑娉ㄥ唽鍒皀acos Server涓婇潰鐨勬湇鍔″悕锛宲ath 鏄姹傛帴鍙e墠缂� */ -@FeignClient(name="phi-sms-user",path = "/sms-u",contextId = "sms-send") +@FeignClient(name="phi-sms-user",path = "/sms",contextId = "sms-send") public interface FSmsSendService { /** @@ -19,5 +21,36 @@ @PostMapping(value = "/sms/send") Result sendSms(@RequestBody SmsSendDto smsSendDto); + /** + * + * @param smsSendDto + * @return + */ + @PostMapping(value = "/sms/identicalSend") + Result sendIdenticalsend(@RequestBody SmsSendDto smsSendDto); + + /** + * 鍙戦�佺煭淇¢獙璇佺爜 + * @param smsGeneralSendDto + * @return + */ + @PostMapping(value = "/verification/code") + Result sendVerificationCode(@RequestBody SmsGeneralSendDto smsGeneralSendDto); + + /** + * 鍙戦�侀�氱煡鐭俊 + * @param smsGeneralSendDto + * @return + */ + @PostMapping(value = "/inform/sms") + Result sendNoticeSms(@RequestBody SmsGeneralSendDto smsGeneralSendDto); + + /** + * 鍙戦�佽惀閿�鐭俊 + * @param smsGeneralSendDto + * @return + */ + @PostMapping(value = "/marketing/sms") + Result sendMarketingSend(@RequestBody SmsGeneralSendDto smsGeneralSendDto); } -- Gitblit v1.8.0