升级oshi到最新版本6.1.6

This commit is contained in:
RuoYi 2022-05-11 09:57:35 +08:00
parent 07e1a30845
commit cffbaddd37
2 changed files with 2 additions and 3 deletions

View File

@ -36,8 +36,7 @@
<kaptcha.version>2.3.2</kaptcha.version>
<swagger.version>3.0.0</swagger.version>
<poi.version>4.1.2</poi.version>
<oshi.version>6.1.2</oshi.version>
<jna.version>5.10.0</jna.version>
<oshi.version>6.1.6</oshi.version>
<velocity.version>2.3</velocity.version>
<oracle.version>10.2.0.4.0</oracle.version>
</properties>

View File

@ -152,7 +152,7 @@ public class SysDeptServiceImpl implements ISysDeptService
public boolean checkDeptExistUser(Long deptId)
{
int result = deptMapper.checkDeptExistUser(deptId);
return result > 0 ? true : false;
return result > 0;
}
/**