Commit 237b290c authored by hezhen's avatar hezhen

Merge branch 'master-tiande' into dev-tiande

parents 56293328 86c857e5
...@@ -73,7 +73,8 @@ public class WebConfiguration implements WebMvcConfigurer { ...@@ -73,7 +73,8 @@ public class WebConfiguration implements WebMvcConfigurer {
"/vehicleInfo/**", "/vehicleInfo/**",
"/branchCompany/**", "/branchCompany/**",
"/vehicleModel/**", "/vehicleModel/**",
"/departure/**" "/departure/**",
"/company/**"
}; };
Collections.addAll(list, urls); Collections.addAll(list, urls);
return list; return list;
......
package com.xxfc.platform.vehicle.rest.admin; package com.xxfc.platform.vehicle.rest.admin;
import com.github.wxiaoqi.security.auth.client.annotation.IgnoreUserToken;
import com.github.wxiaoqi.security.common.msg.ObjectRestResponse; import com.github.wxiaoqi.security.common.msg.ObjectRestResponse;
import com.xxfc.platform.vehicle.biz.BranchCompanyApplyBiz; import com.xxfc.platform.vehicle.biz.BranchCompanyApplyBiz;
import com.xxfc.platform.vehicle.common.BaseController; import com.xxfc.platform.vehicle.common.BaseController;
...@@ -31,5 +32,13 @@ public class CompanyApplyController extends BaseController<BranchCompanyApplyBiz ...@@ -31,5 +32,13 @@ public class CompanyApplyController extends BaseController<BranchCompanyApplyBiz
@ApiOperation("新增入驻公司")
@RequestMapping(value = "app/unauth/add", method = RequestMethod.POST)
@IgnoreUserToken
public ObjectRestResponse addCompany(@RequestBody BranchCompanyApply branchCompanyApply){
return baseBiz.addOrUpd(branchCompanyApply);
}
} }
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