Commit e945ad59 authored by hanfeng's avatar hanfeng

Merge branch 'master-customer-management' into dev

parents f746bcde 079e6982
...@@ -13,7 +13,6 @@ import org.springframework.beans.BeanUtils; ...@@ -13,7 +13,6 @@ import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import tk.mybatis.mapper.entity.Example; import tk.mybatis.mapper.entity.Example;
import tk.mybatis.mapper.weekend.WeekendSqls;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
......
...@@ -49,7 +49,7 @@ public class AppUserLogRemarkBiz extends BaseBiz<AppUserLogRemarkMapper, AppUser ...@@ -49,7 +49,7 @@ public class AppUserLogRemarkBiz extends BaseBiz<AppUserLogRemarkMapper, AppUser
Example example = new Example(AppUserLogRemark.class); Example example = new Example(AppUserLogRemark.class);
example.createCriteria().andEqualTo("levelId", levelId); example.createCriteria().andEqualTo("levelId", levelId);
example.orderBy("time").desc(); example.orderBy("time").desc().orderBy("crtTime").desc();
List<AppUserLogRemark> list = selectByExample(example); List<AppUserLogRemark> list = selectByExample(example);
if (CollectionUtil.isNotEmpty(list)) { if (CollectionUtil.isNotEmpty(list)) {
list.parallelStream().peek(e -> { list.parallelStream().peek(e -> {
......
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