Open
Description
Description of the issue
In this method, I set the list method parameter to source and the selectByCondition method parameter to sink. Only the propagation from source to sink was found, and the propagation of code snippets between source and sink was not recognized
public PageInfo<DtpOrderListVO> list(DtpOrderListQueryVO dtpOrderListQueryVO) {
if (StringUtils.isNotEmpty(dtpOrderListQueryVO.getQueryParam())) {
if (isMobile(dtpOrderListQueryVO.getQueryParam())) {
dtpOrderListQueryVO.setTelephone(encryptProperties.encrypt("dbsecret", dtpOrderListQueryVO.getQueryParam()));
dtpOrderListQueryVO.setQueryParam(null);
}
}
PageHelper.startPage(dtpOrderListQueryVO.getPageNum(), dtpOrderListQueryVO.getPageSize());
List<DtpOrderListVO> list = ordersMapper.selectByCondition(dtpOrderListQueryVO);