Commit beb971df by huluobin

标签改成map

parent 1d641d58
# shellcheck disable=SC2164
cd /gogirl/gogirl-miniapp-backend
git pull
mvn clean package -Dmaven.test.skip=true -Dmaven.compile.fork=true
# shellcheck disable=SC2009
......
......@@ -53,7 +53,15 @@ public class MvcInterceptorConfig extends WebMvcConfigurationSupport {
//退款
.excludePathPatterns("/customer/mallOrderPay/refund/*")
.excludePathPatterns("/customer/xcx/upload");
.excludePathPatterns("/customer/xcx/upload")
.excludePathPatterns("/xcx/login")
.excludePathPatterns("/csrf")
.excludePathPatterns("/xcx/login_t")
.excludePathPatterns("/phone/bindPhone_t")
.excludePathPatterns("/phone/getBindCode")
.excludePathPatterns("/xcx/upload");
;
registry.addInterceptor(logHandlerInterceptor);
......
......@@ -345,7 +345,7 @@ public class XcxController {
}
@ApiOperation(value = "美甲师根据code获取token")
@GetMapping(value = "/technician/login_t")
@GetMapping(value = "/technician/xcx/login_t")
public JsonResult<String> login_t(@RequestParam String code) {
log.info("调用login,授权用户信息到程序 code:{} 获取用户信息 ", code);
......@@ -389,7 +389,7 @@ public class XcxController {
}
@ApiOperation(value = "美甲师根据token获取美甲师信息")
@RequestMapping(method = {RequestMethod.GET}, value = "/technician/xcx/getUserInfo_t")
@GetMapping("/technician/xcx/getUserInfo_t")
@GogirlShop
public JsonResult<List<StoreTechnician>> getUserInfo_t(String token) {
......
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