package com.xmzs.system.controller.system;
|
|
import cn.dev33.satoken.annotation.SaCheckPermission;
|
import cn.dev33.satoken.annotation.SaCheckRole;
|
import com.baomidou.lock.annotation.Lock4j;
|
import jakarta.servlet.http.HttpServletResponse;
|
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotEmpty;
|
import jakarta.validation.constraints.NotNull;
|
import lombok.RequiredArgsConstructor;
|
import com.xmzs.common.core.constant.TenantConstants;
|
import com.xmzs.common.core.domain.R;
|
import com.xmzs.common.core.validate.AddGroup;
|
import com.xmzs.common.core.validate.EditGroup;
|
import com.xmzs.common.excel.utils.ExcelUtil;
|
import com.xmzs.common.idempotent.annotation.RepeatSubmit;
|
import com.xmzs.common.log.annotation.Log;
|
import com.xmzs.common.log.enums.BusinessType;
|
import com.xmzs.common.mybatis.core.page.PageQuery;
|
import com.xmzs.common.mybatis.core.page.TableDataInfo;
|
import com.xmzs.common.tenant.helper.TenantHelper;
|
import com.xmzs.common.web.core.BaseController;
|
import com.xmzs.system.domain.bo.SysTenantBo;
|
import com.xmzs.system.domain.vo.SysTenantVo;
|
import com.xmzs.system.service.ISysTenantService;
|
import org.springframework.validation.annotation.Validated;
|
import org.springframework.web.bind.annotation.DeleteMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.PathVariable;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.PutMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
import java.util.List;
|
|
/**
|
* 租户管理
|
*
|
* @author Michelle.Chung
|
*/
|
@Validated
|
@RequiredArgsConstructor
|
@RestController
|
@RequestMapping("/system/tenant")
|
public class SysTenantController extends BaseController {
|
|
private final ISysTenantService tenantService;
|
|
/**
|
* 查询租户列表
|
*/
|
@SaCheckRole(TenantConstants.SUPER_ADMIN_ROLE_KEY)
|
@SaCheckPermission("system:tenant:list")
|
@GetMapping("/list")
|
public TableDataInfo<SysTenantVo> list(SysTenantBo bo, PageQuery pageQuery) {
|
return tenantService.queryPageList(bo, pageQuery);
|
}
|
|
/**
|
* 导出租户列表
|
*/
|
@SaCheckRole(TenantConstants.SUPER_ADMIN_ROLE_KEY)
|
@SaCheckPermission("system:tenant:export")
|
@Log(title = "租户", businessType = BusinessType.EXPORT)
|
@PostMapping("/export")
|
public void export(SysTenantBo bo, HttpServletResponse response) {
|
List<SysTenantVo> list = tenantService.queryList(bo);
|
ExcelUtil.exportExcel(list, "租户", SysTenantVo.class, response);
|
}
|
|
/**
|
* 获取租户详细信息
|
*
|
* @param id 主键
|
*/
|
@SaCheckRole(TenantConstants.SUPER_ADMIN_ROLE_KEY)
|
@SaCheckPermission("system:tenant:query")
|
@GetMapping("/{id}")
|
public R<SysTenantVo> getInfo(@NotNull(message = "主键不能为空")
|
@PathVariable Long id) {
|
return R.ok(tenantService.queryById(id));
|
}
|
|
/**
|
* 新增租户
|
*/
|
@SaCheckRole(TenantConstants.SUPER_ADMIN_ROLE_KEY)
|
@SaCheckPermission("system:tenant:add")
|
@Log(title = "租户", businessType = BusinessType.INSERT)
|
@Lock4j
|
@RepeatSubmit()
|
@PostMapping()
|
public R<Void> add(@Validated(AddGroup.class) @RequestBody SysTenantBo bo) {
|
if (!tenantService.checkCompanyNameUnique(bo)) {
|
return R.fail("新增租户'" + bo.getCompanyName() + "'失败,企业名称已存在");
|
}
|
return toAjax(TenantHelper.ignore(() -> tenantService.insertByBo(bo)));
|
}
|
|
/**
|
* 修改租户
|
*/
|
@SaCheckRole(TenantConstants.SUPER_ADMIN_ROLE_KEY)
|
@SaCheckPermission("system:tenant:edit")
|
@Log(title = "租户", businessType = BusinessType.UPDATE)
|
@RepeatSubmit()
|
@PutMapping()
|
public R<Void> edit(@Validated(EditGroup.class) @RequestBody SysTenantBo bo) {
|
tenantService.checkTenantAllowed(bo.getTenantId());
|
if (!tenantService.checkCompanyNameUnique(bo)) {
|
return R.fail("修改租户'" + bo.getCompanyName() + "'失败,公司名称已存在");
|
}
|
return toAjax(tenantService.updateByBo(bo));
|
}
|
|
/**
|
* 状态修改
|
*/
|
@SaCheckRole(TenantConstants.SUPER_ADMIN_ROLE_KEY)
|
@SaCheckPermission("system:tenant:edit")
|
@Log(title = "租户", businessType = BusinessType.UPDATE)
|
@PutMapping("/changeStatus")
|
public R<Void> changeStatus(@RequestBody SysTenantBo bo) {
|
tenantService.checkTenantAllowed(bo.getTenantId());
|
return toAjax(tenantService.updateTenantStatus(bo));
|
}
|
|
/**
|
* 删除租户
|
*
|
* @param ids 主键串
|
*/
|
@SaCheckRole(TenantConstants.SUPER_ADMIN_ROLE_KEY)
|
@SaCheckPermission("system:tenant:remove")
|
@Log(title = "租户", businessType = BusinessType.DELETE)
|
@DeleteMapping("/{ids}")
|
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
@PathVariable Long[] ids) {
|
return toAjax(tenantService.deleteWithValidByIds(List.of(ids), true));
|
}
|
|
/**
|
* 动态切换租户
|
*
|
* @param tenantId 租户ID
|
*/
|
@SaCheckRole(TenantConstants.SUPER_ADMIN_ROLE_KEY)
|
@GetMapping("/dynamic/{tenantId}")
|
public R<Void> dynamicTenant(@NotBlank(message = "租户ID不能为空") @PathVariable String tenantId) {
|
TenantHelper.setDynamic(tenantId);
|
return R.ok();
|
}
|
|
/**
|
* 清除动态租户
|
*/
|
@SaCheckRole(TenantConstants.SUPER_ADMIN_ROLE_KEY)
|
@GetMapping("/dynamic/clear")
|
public R<Void> dynamicClear() {
|
TenantHelper.clearDynamic();
|
return R.ok();
|
}
|
|
|
/**
|
* 同步租户套餐
|
*
|
* @param tenantId 租户id
|
* @param packageId 套餐id
|
*/
|
@SaCheckRole(TenantConstants.SUPER_ADMIN_ROLE_KEY)
|
@SaCheckPermission("system:tenant:edit")
|
@Log(title = "租户", businessType = BusinessType.UPDATE)
|
@GetMapping("/syncTenantPackage")
|
public R<Void> syncTenantPackage(@NotBlank(message = "租户ID不能为空") String tenantId, @NotBlank(message = "套餐ID不能为空") String packageId) {
|
return toAjax(TenantHelper.ignore(() -> tenantService.syncTenantPackage(tenantId, packageId)));
|
}
|
|
}
|