保誠-保戶業務員媒合平台
wayne
2021-12-16 42567b98b186f219b7a923dc3e6daeb5ffa31cfe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.pollex.pam.web.rest;
 
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Deprecated
@RestController
@RequestMapping("/api/test/sendMsg")
public class TestSendMsgResource {
 
    @PostMapping("/bySMS")
    public ResponseEntity<Void> bySMS(@RequestBody Object param) {
 
    }
 
    @PostMapping("/byEmail")
    public ResponseEntity<Void> byEmail(@RequestBody Object param) {
 
    }
}