From 8b680a3252aca370b49be3edf8aa5ac1a6865c49 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Mon, 28 Jun 2021 14:10:56 +0800 Subject: [PATCH] modify --- gc-user/src/main/java/com/xzx/gc/user/service/JhyInfoService.java | 34 ++++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/gc-user/src/main/java/com/xzx/gc/user/service/JhyInfoService.java b/gc-user/src/main/java/com/xzx/gc/user/service/JhyInfoService.java index ddb94da..c8d3d1a 100644 --- a/gc-user/src/main/java/com/xzx/gc/user/service/JhyInfoService.java +++ b/gc-user/src/main/java/com/xzx/gc/user/service/JhyInfoService.java @@ -1,14 +1,26 @@ package com.xzx.gc.user.service; import cn.hutool.core.bean.BeanUtil; +import cn.hutool.core.convert.Convert; +import com.github.pagehelper.PageHelper; +import com.github.pagehelper.PageInfo; import com.xzx.gc.common.exception.RestException; import com.xzx.gc.entity.JhyInfo; import com.xzx.gc.user.dto.JhyApplyDto; +import com.xzx.gc.user.dto.JhyInfoListDto; import com.xzx.gc.user.mapper.JhyInfoMapper; +import com.xzx.gc.user.vo.JhyInfoListVo; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; import java.util.Date; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +@Service +@Transactional public class JhyInfoService { @Autowired @@ -38,4 +50,26 @@ return jhyInfo.getStatus(); } + + public boolean isJhy(String userId) { + JhyInfo jhyInfo = jhyInfoMapper.selectJhyInfoByUserId(userId); + if (jhyInfo == null) { + return false; + } + + return JhyInfo.CHECK_PASS.equals(jhyInfo.getStatus()); + } + + public Map<String, Object> queryList(JhyInfoListDto jhyInfoListDto) { + PageHelper.startPage(jhyInfoListDto.getPage(), jhyInfoListDto.getLimit()); + List<JhyInfoListVo> jhyInfoListVos = jhyInfoMapper.selectJhyInfoList(jhyInfoListDto); + PageInfo<JhyInfoListVo> pageInfo = new PageInfo<>(jhyInfoListVos); + + Map<String, Object> data = new HashMap<>(); + int count = Convert.toInt(pageInfo.getTotal()); + data.put("data", jhyInfoListVos); + data.put("count", count); + data.put("code", 0); + return data; + } } -- Gitblit v1.9.1