| | |
| | | package com.ruoyi.doublePrevention.repository;
|
| | |
|
| | |
|
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| | | import com.ruoyi.doublePrevention.entity.RiskOldInfo;
|
| | | import com.ruoyi.doublePrevention.entity.dto.req.RiskOldInfoQueryReqDTO;
|
| | | import org.apache.ibatis.annotations.Param;
|
| | | import org.springframework.stereotype.Repository;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | |
|
| | | @Repository
|
| | | public interface RiskOldInfoRepository extends BaseMapper<RiskOldInfo> {
|
| | |
|
| | |
|
| | | List<RiskOldInfo> selectOldRiskInfoPage(@Param("queryReqDTO") RiskOldInfoQueryReqDTO queryReqDTO);
|
| | |
|
| | |
|
| | | }
|
| | | package com.ruoyi.doublePrevention.repository; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.doublePrevention.entity.RiskOldInfo; |
| | | import com.ruoyi.doublePrevention.entity.dto.req.RiskOldInfoQueryReqDTO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | |
| | | @Repository |
| | | public interface RiskOldInfoRepository extends BaseMapper<RiskOldInfo> { |
| | | |
| | | |
| | | List<RiskOldInfo> selectOldRiskInfoPage(@Param("queryReqDTO") RiskOldInfoQueryReqDTO queryReqDTO); |
| | | |
| | | |
| | | } |