Helius
2021-06-28 1ae21f2e7931839bba5187c87f1627089253e7cf
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;
    }
}