Commit 8dfd0ff5 authored by zhangyong's avatar zhangyong

1

parent 53ec7e65
package com.egolm.payment.alipay.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("alipay")
public class AliPayTestController {
@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