Commit c5da4d3d authored by shiyu's avatar shiyu

列表排序

parent b5239edf
......@@ -49,6 +49,7 @@ public class FollowFansRecordDaoImpl implements FollowFansRecordDao {
JdbcHelper.ifPresent(dto.getFollowerId(), criteria::andFollowerIdEqualTo);
JdbcHelper.ifPresent(dto.getFansId(), criteria::andFansIdEqualTo);
criteria.andStateEqualTo(1);
example.setOrderByClause("create_time desc");
PageHelper.startPage(dto.getPage(), dto.getLimit());
return followFansRecordMapper.selectByExample(example);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment