|
@@ -225,13 +225,7 @@ public class SysController {
|
|
|
if (Objects.nonNull(enable)) {
|
|
|
tbOrgQueryWrapper.lambda().eq(TBOrg::getEnable, enable);
|
|
|
}
|
|
|
- List<TBOrg> tbOrgList = tbOrgService.list(tbOrgQueryWrapper);
|
|
|
-// tbOrgList.forEach(s -> {
|
|
|
-// if (Objects.nonNull(s.getLogo()) && !Objects.equals(s.getLogo(), "")) {
|
|
|
-// s.setLogo(systemConfig.getProperty("aliyun.oss.url") + File.separator + s.getLogo());
|
|
|
-// }
|
|
|
-// });
|
|
|
- return ResultUtil.ok(tbOrgList);
|
|
|
+ return ResultUtil.ok(tbOrgService.list(tbOrgQueryWrapper));
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "角色查询接口")
|