16639036659
2023-04-27 c710722937fa820f2e18c6a347a1f3e38f897cc0
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.doublePrevention.service.baseService;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.doublePrevention.entity.RiskAndPeopleInfo;
import com.ruoyi.doublePrevention.entity.dto.req.RiskAndPeopleInfoReqBO;
import com.ruoyi.doublePrevention.entity.dto.resp.RiskAndPeopleInfoRespDTO;
import com.ruoyi.doublePrevention.vo.ResultVO;
 
public interface RiskAndPeopleInfoService extends IService<RiskAndPeopleInfo> {
 
    ResultVO<RiskAndPeopleInfoRespDTO> listRiskAndPeoplePage(RiskAndPeopleInfoReqBO reqBO);
}