gc-user/src/main/java/com/xzx/gc/user/service/JhyInfoService.java
@@ -42,4 +42,17 @@ return jhyInfo.getStatus(); } public boolean isJhy(String userId) { JhyInfo jhyInfo = jhyInfoMapper.selectJhyInfoByUserId(userId); if (jhyInfo == null) { return false; } if (JhyInfo.CHECK_PASS.equals(jhyInfo.getStatus())) { return true; } return false; } }