修改排序降序

parent 1ff2c761
...@@ -43,7 +43,7 @@ public class DqPersonelServiceImpl extends CrudServiceImpl<DqPersonelDao, DqPers ...@@ -43,7 +43,7 @@ public class DqPersonelServiceImpl extends CrudServiceImpl<DqPersonelDao, DqPers
QueryWrapper<DqPersonelEntity> wrapper = new QueryWrapper<>(); QueryWrapper<DqPersonelEntity> wrapper = new QueryWrapper<>();
wrapper.eq(StringUtils.isNotBlank(id), "id", id); wrapper.eq(StringUtils.isNotBlank(id), "id", id);
wrapper.orderByAsc("dq_region_id"); wrapper.orderByDesc("dq_region_id");
return wrapper; return wrapper;
} }
......
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