use of com.itrus.portal.db.MobileRiskStatisticsLogExample in project portal by ixinportal.
the class MobileRiskStatisticsLogService method selectByRiskStatisticsLogId.
// 根据风控记录的ID查询该条风控记录
public MobileRiskStatisticsLog selectByRiskStatisticsLogId(Long id) {
if (id != null) {
MobileRiskStatisticsLogExample example = new MobileRiskStatisticsLogExample();
MobileRiskStatisticsLogExample.Criteria RiskStatisticsCr = example.createCriteria();
RiskStatisticsCr.andIdEqualTo(id);
MobileRiskStatisticsLog mobileRiskStatisticsLog = sqlSession.selectOne("com.itrus.portal.db.MobileRiskStatisticsLogMapper.selectByExample", example);
return mobileRiskStatisticsLog;
}
return null;
}
Aggregations