16639036659
2023-12-11 56c84cd7fb04407536eb0135162313029828a81f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
 
    RiskAndPeopleInfo selectRiskAndPeopleInfoById(Long id);
}