Commit 7a575470 authored by 赵啸非's avatar 赵啸非

Merge remote-tracking branch 'origin/master'

parents 7a3fc98d 54265eb5
......@@ -38,6 +38,8 @@ public class AttendanceSummaryQuery {
private List<String> properties;
private List<Long> idList;
public AttendanceSummaryQuery(String summaryTime) {
this.summaryTime = summaryTime;
}
......
......@@ -95,7 +95,7 @@ public class DeptController extends BaseCRUDJsonBodyMappingController<DeptServic
int code = VALUE_RESULT_SUCCESS;
try {
DeptQuery deptQuery = new DeptQuery();
deptQuery.setOrderColList(Arrays.asList(new OrderCol("deptName")));
deptQuery.setOrderColList(Arrays.asList(new OrderCol("orderNum","desc")));
List<DeptEntity> list = this.service.find(deptQuery);
List<DeptTreeSelect> treeSelects = this.service.buildDeptTreeSelect(list);
model.put("result", treeSelects);
......
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