Merge remote-tracking branch 'base-version/main' into dev

This commit is contained in:
chenbowen
2025-12-12 16:11:56 +08:00

View File

@@ -64,4 +64,13 @@ public class SmsCallbackController {
return success(true); 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);
}
} }