Browse Source

调整获取短信发送费用接口请求方式

codingliang 1 year ago
parent
commit
e01581141c

+ 1 - 1
src/main/java/com/sqx/modules/errand/controller/TbIndentSmsController.java

@@ -86,7 +86,7 @@ public class TbIndentSmsController {
     }
 
     @ApiOperation("获取短信金额配置")
-    @DeleteMapping(value = "price-of-sms")
+    @GetMapping(value = "price-of-sms")
     public Result getPriceOfSms() {
         Double price = smsTemplateService.getPriceOfSms();
         return Result.success().put("data", price);