保誠-保戶業務員媒合平台
wayne
2021-12-17 40770ab12b3cb92627da7eaed78f088bddc43fd1
pamapi/src/main/java/com/pollex/pam/web/rest/TestSendMsgResource.java
@@ -14,8 +14,8 @@
    SendMsgService sendMsgService;
    @GetMapping("/bySMS")
    public ResponseEntity<Void> bySMS(@RequestParam String subject, @RequestParam String toMobile, @RequestParam String content) {
        sendMsgService.sendMsgBySMS(subject, toMobile, content);
    public ResponseEntity<Void> bySMS(@RequestParam String toMobile, @RequestParam String content) {
        sendMsgService.sendMsgBySMS(toMobile, content);
        return ResponseEntity.noContent().build();
    }