1. 修改了提现记录列表的Bug
2. 修改了动态表单因为开启cache缓存导致数据不全不更新的Bug(不使用缓存) 3. 调试控制台增加了调试接口的配置 4. 修改了企业认证的功能
This commit is contained in:
parent
d064421d27
commit
b9ec568579
@ -118,8 +118,8 @@ public class CategoryController extends DefaultBaseController {
|
|||||||
@ApiOperation(value = "当前用户id信息", notes = "当前用户id信息接口")
|
@ApiOperation(value = "当前用户id信息", notes = "当前用户id信息接口")
|
||||||
@ApiResponses({@ApiResponse(code = 400, message = "请求失败", response = ErrorResult.class)})
|
@ApiResponses({@ApiResponse(code = 400, message = "请求失败", response = ErrorResult.class)})
|
||||||
@GetMapping("getcurrentuseridinfo")
|
@GetMapping("getcurrentuseridinfo")
|
||||||
public CurrentUserIdInfoDTO getCurrentUserIdInfo() {
|
public UserInfoBO getCurrentUserIdInfo() {
|
||||||
return securityComponent.getCurrentUserIdInfo();
|
return securityComponent.getCurrentUser();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation(value = "商品类目数据字典树形", notes = "商品类目数据字典树形接口")
|
@ApiOperation(value = "商品类目数据字典树形", notes = "商品类目数据字典树形接口")
|
||||||
|
@ -115,8 +115,8 @@ public class IndustryController extends DefaultBaseController {
|
|||||||
@ApiOperation(value = "当前用户id信息", notes = "当前用户id信息接口")
|
@ApiOperation(value = "当前用户id信息", notes = "当前用户id信息接口")
|
||||||
@ApiResponses({@ApiResponse(code = 400, message = "请求失败", response = ErrorResult.class)})
|
@ApiResponses({@ApiResponse(code = 400, message = "请求失败", response = ErrorResult.class)})
|
||||||
@GetMapping("getcurrentuseridinfo")
|
@GetMapping("getcurrentuseridinfo")
|
||||||
public CurrentUserIdInfoDTO getCurrentUserIdInfo() {
|
public UserInfoBO getCurrentUserIdInfo() {
|
||||||
return securityComponent.getCurrentUserIdInfo();
|
return securityComponent.getCurrentUser();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation(value = "店铺行业数据字典树形", notes = "店铺行业数据字典树形接口")
|
@ApiOperation(value = "店铺行业数据字典树形", notes = "店铺行业数据字典树形接口")
|
||||||
|
Loading…
Reference in New Issue
Block a user