parent
5f977e9e2d
commit
1a683d216d
@ -0,0 +1,25 @@
|
||||
package com.mashibing.api.controller;
|
||||
|
||||
import com.mashibing.api.pojo.SingleSendRequest;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @author heqijun
|
||||
* @ClassName: SMSController
|
||||
* @Description: SMSController
|
||||
* @date 2025/6/4 18:58
|
||||
*/
|
||||
|
||||
@RestController
|
||||
@RequestMapping("sms")
|
||||
public class SMSController {
|
||||
|
||||
@PostMapping("singleSend")
|
||||
public String singleSend(@RequestParam SingleSendRequest request) {
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue