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 { ResultVO listRiskAndPeoplePage(RiskAndPeopleInfoReqBO reqBO); RiskAndPeopleInfo selectRiskAndPeopleInfoById(Long id); }