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(); }