Commit 52bdfd08 by 阳浪

埋点优化

parent ce8abdad
......@@ -20,10 +20,7 @@ import com.yizhi.training.application.vo.domain.AuthzUserGroupVo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.*;
import java.util.stream.Collectors;
/**
......@@ -60,6 +57,9 @@ public class LeaveWordServiceImpl extends ServiceImpl<LeaveWordMapper, LeaveWord
if(ObjectUtil.isNotEmpty(paramVo.getState())){
map.eq("state", paramVo.getState());
}
List<String> list = new ArrayList<String>();
list.add("createTime");
map.orderDesc(list);
paramPage = selectPage(paramPage,map);
if(paramPage!=null){
page.setSize(paramPage.getSize());
......
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