|
|
|
@ -16,15 +16,16 @@
|
|
|
|
|
*/ |
|
|
|
|
package org.springblade.system.controller; |
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import io.swagger.annotations.Api; |
|
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
|
import io.swagger.annotations.ApiParam; |
|
|
|
|
import io.swagger.annotations.*; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import org.springblade.core.boot.ctrl.BladeController; |
|
|
|
|
import org.springblade.core.mp.support.Condition; |
|
|
|
|
import org.springblade.core.mp.support.Query; |
|
|
|
|
import org.springblade.core.secure.BladeUser; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.constant.BladeConstant; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
import org.springblade.system.entity.Tenant; |
|
|
|
|
import org.springblade.system.service.ITenantService; |
|
|
|
@ -32,9 +33,11 @@ import org.springframework.web.bind.annotation.*;
|
|
|
|
|
import springfox.documentation.annotations.ApiIgnore; |
|
|
|
|
|
|
|
|
|
import javax.validation.Valid; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 控制器 |
|
|
|
|
* 控制器 |
|
|
|
|
* |
|
|
|
|
* @author Chill |
|
|
|
|
*/ |
|
|
|
@ -48,8 +51,8 @@ public class TenantController extends BladeController {
|
|
|
|
|
private ITenantService tenantService; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 详情 |
|
|
|
|
*/ |
|
|
|
|
* 详情 |
|
|
|
|
*/ |
|
|
|
|
@GetMapping("/detail") |
|
|
|
|
@ApiOperation(value = "详情", notes = "传入tenant", position = 1) |
|
|
|
|
public R<Tenant> detail(Tenant tenant) { |
|
|
|
@ -58,61 +61,59 @@ public class TenantController extends BladeController {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 分页 |
|
|
|
|
*/ |
|
|
|
|
* 分页 |
|
|
|
|
*/ |
|
|
|
|
@GetMapping("/list") |
|
|
|
|
@ApiImplicitParams({ |
|
|
|
|
@ApiImplicitParam(name = "tenantCode", value = "参数名称", paramType = "query", dataType = "string"), |
|
|
|
|
@ApiImplicitParam(name = "tenantName", value = "角色别名", paramType = "query", dataType = "string"), |
|
|
|
|
@ApiImplicitParam(name = "contactNumber", value = "联系电话", paramType = "query", dataType = "string") |
|
|
|
|
}) |
|
|
|
|
@ApiOperation(value = "分页", notes = "传入tenant", position = 2) |
|
|
|
|
public R<IPage<Tenant>> list(Tenant tenant, Query query) { |
|
|
|
|
IPage<Tenant> pages = tenantService.page(Condition.getPage(query), Condition.getQueryWrapper(tenant)); |
|
|
|
|
public R<IPage<Tenant>> list(@ApiIgnore @RequestParam Map<String, Object> tenant, Query query, BladeUser bladeUser) { |
|
|
|
|
QueryWrapper<Tenant> queryWrapper = Condition.getQueryWrapper(tenant, Tenant.class); |
|
|
|
|
IPage<Tenant> pages = tenantService.page(Condition.getPage(query), (!bladeUser.getTenantCode().equals(BladeConstant.ADMIN_TENANT_CODE)) ? queryWrapper.lambda().eq(Tenant::getTenantCode, bladeUser.getTenantCode()) : queryWrapper); |
|
|
|
|
return R.data(pages); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 自定义分页 |
|
|
|
|
*/ |
|
|
|
|
* 下拉数据源 |
|
|
|
|
*/ |
|
|
|
|
@GetMapping("/select") |
|
|
|
|
@ApiOperation(value = "下拉数据源", notes = "传入tenant", position = 3) |
|
|
|
|
public R<List<Tenant>> select(Tenant tenant) { |
|
|
|
|
List<Tenant> list = tenantService.list(Condition.getQueryWrapper(tenant)); |
|
|
|
|
return R.data(list); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 自定义分页 |
|
|
|
|
*/ |
|
|
|
|
@GetMapping("/page") |
|
|
|
|
@ApiOperation(value = "分页", notes = "传入tenant", position = 3) |
|
|
|
|
@ApiOperation(value = "分页", notes = "传入tenant", position = 4) |
|
|
|
|
public R<IPage<Tenant>> page(Tenant tenant, Query query) { |
|
|
|
|
IPage<Tenant> pages = tenantService.selectTenantPage(Condition.getPage(query), tenant); |
|
|
|
|
return R.data(pages); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 新增 |
|
|
|
|
*/ |
|
|
|
|
@PostMapping("/save") |
|
|
|
|
@ApiOperation(value = "新增", notes = "传入tenant", position = 4) |
|
|
|
|
public R save(@Valid @RequestBody Tenant tenant) { |
|
|
|
|
return R.status(tenantService.save(tenant)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 修改 |
|
|
|
|
*/ |
|
|
|
|
@PostMapping("/update") |
|
|
|
|
@ApiOperation(value = "修改", notes = "传入tenant", position = 5) |
|
|
|
|
public R update(@Valid @RequestBody Tenant tenant) { |
|
|
|
|
return R.status(tenantService.updateById(tenant)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 新增或修改 |
|
|
|
|
*/ |
|
|
|
|
* 新增或修改 |
|
|
|
|
*/ |
|
|
|
|
@PostMapping("/submit") |
|
|
|
|
@ApiOperation(value = "新增或修改", notes = "传入tenant", position = 6) |
|
|
|
|
@ApiOperation(value = "新增或修改", notes = "传入tenant", position = 7) |
|
|
|
|
public R submit(@Valid @RequestBody Tenant tenant) { |
|
|
|
|
return R.status(tenantService.saveOrUpdate(tenant)); |
|
|
|
|
return R.status(tenantService.saveTenant(tenant)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 删除 |
|
|
|
|
*/ |
|
|
|
|
* 删除 |
|
|
|
|
*/ |
|
|
|
|
@PostMapping("/remove") |
|
|
|
|
@ApiOperation(value = "逻辑删除", notes = "传入ids", position = 7) |
|
|
|
|
@ApiOperation(value = "逻辑删除", notes = "传入ids", position = 8) |
|
|
|
|
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
|
|
|
|
return R.status(tenantService.deleteLogic(Func.toIntList(ids))); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|