Commit 26d95675 authored by zhangyong's avatar zhangyong

1

parent 5cafdfaf
package com.egolm.shop.controller;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
@Api(tags={"测试管理"})
@RestController
@RequestMapping("test")
public class TestController {
@ApiOperation("测试")
@ApiImplicitParams({
})
@RequestMapping(value = "/t",method=RequestMethod.POST)
public String sms(HttpServletRequest request) {
return "1111";
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment