|
|
|
@@ -13,8 +13,6 @@ import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
@RestController |
|
|
|
@RequestMapping("wxMsg") |
|
|
|
public class WxMsgController extends BaseController |
|
|
|
@@ -66,10 +64,6 @@ public class WxMsgController extends BaseController |
|
|
|
return new ResultData(Result.SUCCESS,"查询成功",wxMsgService.getById(id)); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("短信接口回调") |
|
|
|
@RequestMapping("/receivemsg/{bid}") |
|
|
|
public void receivemsg(@PathVariable String bid,@RequestParam Map<String,String> param) { |
|
|
|
//解析param数据插入数据库中 |
|
|
|
|
|
|
|
@GetMapping("/sendmsgbyexcel") |
|
|
|
public ResultData sendmsgbyexcel(@RequestParam("file") MultipartFile file,@ModelAttribute WxMsg wxMsg) throws Exception { |
|
|
|
|