kettle店铺对接企业微信
parent
3601d0f6f9
commit
1787d5a93c
@ -0,0 +1,15 @@
|
||||
package com.kiisoo.ic.wechat.web;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
|
||||
@Controller
|
||||
@RequestMapping("/wechat")
|
||||
public class CreateWechatController {
|
||||
|
||||
@RequestMapping("/create")
|
||||
public void createWechat(@RequestParam("code") String code){
|
||||
System.out.println(code);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue