Commit fc419217 authored by xiaozhe.chen's avatar xiaozhe.chen

添加修改手机号后台管理接口

parent 5d527b47
package cn.quantgroup.customer.rest;
import cn.quantgroup.customer.rest.vo.JsonResult;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@Slf4j
@RestController
@RequestMapping("/test")
public class TestRest {
@RequestMapping(value = "/modify/{id}/feedback", method = RequestMethod.PUT)
public JsonResult feedback(@PathVariable String id) {
return JsonResult.buildSuccessResult("success", id);
}
}
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