|
|
@@ -36,7 +36,7 @@ public class SysTenantController extends BaseController{
|
|
|
private final ISysTenantService sysTenantService;
|
|
|
|
|
|
@ApiOperationSupport(author = "lf",order = 1)
|
|
|
- @ApiOperation(value="根据条件查询医院列表",notes = "权限: 无")
|
|
|
+ @ApiOperation(value="根据条件查询医院列表(超管)",notes = "权限: 无")
|
|
|
@PostMapping("/query/page")
|
|
|
@TenantIgnore
|
|
|
public CommonResult<List<SysTenantCommonVO>> selectList(@RequestBody SysTenantQueryDTO query) {
|
|
|
@@ -46,7 +46,7 @@ public class SysTenantController extends BaseController{
|
|
|
}
|
|
|
|
|
|
@ApiOperationSupport(author = "lf",order = 2)
|
|
|
- @ApiOperation(value = "根据id查询医院详情",notes = "权限: sys:tenant:query")
|
|
|
+ @ApiOperation(value = "根据id查询医院详情(超管)",notes = "权限: sys:tenant:query")
|
|
|
@GetMapping("/detail/{id}")
|
|
|
@SaCheckPermission("sys:tenant:query")
|
|
|
public CommonResult<SysTenantCommonVO> findById(@PathVariable("id") String id){
|
|
|
@@ -54,7 +54,7 @@ public class SysTenantController extends BaseController{
|
|
|
}
|
|
|
|
|
|
@ApiOperationSupport(author = "lf",order = 3)
|
|
|
- @ApiOperation(value="添加医院列表",notes = "权限: sys:tenant:add")
|
|
|
+ @ApiOperation(value="添加医院列表(超管)",notes = "权限: sys:tenant:add")
|
|
|
@PostMapping("/add")
|
|
|
@SaCheckPermission("sys:tenant:add")
|
|
|
public CommonResult<Boolean> add(@RequestBody@Validated(Insert.class) SysTenantAddDTO source) {
|
|
|
@@ -62,7 +62,7 @@ public class SysTenantController extends BaseController{
|
|
|
}
|
|
|
|
|
|
@ApiOperationSupport(author = "lf",order = 4)
|
|
|
- @ApiOperation(value="通过主键id编辑医院列表",notes = "权限: sys:tenant:edit")
|
|
|
+ @ApiOperation(value="通过主键id编辑医院列表(超管)",notes = "权限: sys:tenant:edit")
|
|
|
@PostMapping("/edit")
|
|
|
@SaCheckPermission("sys:tenant:edit")
|
|
|
@OperateLog
|