1. 新增 95 短信渠道回调接口

This commit is contained in:
chenbowen
2025-12-12 16:09:22 +08:00
parent cae0b9e4af
commit b0838b6ae0

View File

@@ -62,4 +62,13 @@ public class SmsCallbackController {
return success(true);
}
@PostMapping("/hl95")
@PermitAll
@TenantIgnore
@Operation(summary = "鸿联九五短信的回调")
public CommonResult<Boolean> receiveHl95SmsStatus(@RequestBody String requestBody) throws Throwable {
smsSendService.receiveSmsStatus(SmsChannelEnum.HL95.getCode(), requestBody);
return success(true);
}
}