|
|
@@ -88,15 +88,15 @@ public class SysTenantController extends BaseController{
|
|
|
}
|
|
|
@ApiOperationSupport(author = "wangzl",order = 7)
|
|
|
@ApiOperation(value="生成添加管理员链接",notes = "权限: 无")
|
|
|
- @GetMapping("/generate/{tentId}")
|
|
|
- public CommonResult<SysAdminAddCacheDTO> generateAddAdmin(@PathVariable String tentId) {
|
|
|
- return CommonResult.success(sysTenantService.generateAddAdmin(tentId));
|
|
|
+ @GetMapping("/generate/{tenantId}")
|
|
|
+ public CommonResult<SysAdminAddCacheDTO> generateAddAdmin(@PathVariable String tenantId) {
|
|
|
+ return CommonResult.success(sysTenantService.generateAddAdmin(tenantId));
|
|
|
}
|
|
|
@ApiOperationSupport(author = "wangzl",order = 8)
|
|
|
@ApiOperation(value="根据医院ID获取缓存信息",notes = "权限: 无")
|
|
|
- @GetMapping("/getCache/{tentId}")
|
|
|
- public CommonResult<SysAdminAddCacheDTO> getCache(@PathVariable String tentId) {
|
|
|
- return CommonResult.success(sysTenantService.getCache(tentId));
|
|
|
+ @GetMapping("/getCache/{tenantId}")
|
|
|
+ public CommonResult<SysAdminAddCacheDTO> getCache(@PathVariable String tenantId) {
|
|
|
+ return CommonResult.success(sysTenantService.getCache(tenantId));
|
|
|
}
|
|
|
@ApiOperationSupport(author = "wangzl",order = 7)
|
|
|
@ApiOperation(value="通过邀请连接存储管理员信息",notes = "权限: 无")
|