You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bsdgy-server/src/main/java/com/kiisoo/ic/wechat/web/CreateWechatController.java

16 lines
426 B
Java

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);
}
}