微信接口开发

This commit is contained in:
huangdeliang 2021-05-13 17:00:07 +08:00
parent 7b16561591
commit 8aab2a67e7

View File

@ -521,6 +521,13 @@ public class WechatAppletController extends BaseController {
public AjaxResult getPlanDetail(@RequestParam Long planId) {
return AjaxResult.success(iSysRecipesService.selectSysRecipesByRecipesId(planId));
}
@GetMapping("/server")
public Boolean authServer(@RequestParam String signature, @RequestParam String timestamp, @RequestParam String nonce, @RequestParam String echostr) {
return true;
}
}