|
|
@@ -2,6 +2,7 @@ package com.sundot.airport.ledger.service.impl;
|
|
2
|
2
|
|
|
3
|
3
|
import com.sundot.airport.common.core.domain.entity.SysDept;
|
|
4
|
4
|
import com.sundot.airport.common.core.domain.entity.SysUser;
|
|
|
5
|
+import com.sundot.airport.common.enums.ScoreLevelEnum;
|
|
5
|
6
|
import com.sundot.airport.ledger.domain.LedgerExamScore;
|
|
6
|
7
|
import com.sundot.airport.ledger.domain.ScoreDimension;
|
|
7
|
8
|
import com.sundot.airport.ledger.domain.ScoreEvent;
|
|
|
@@ -294,6 +295,7 @@ public class EmployeePortraitServiceImpl implements IEmployeePortraitService {
|
|
294
|
295
|
// 加载维度定义
|
|
295
|
296
|
ScoreDimension dq = new ScoreDimension();
|
|
296
|
297
|
dq.setStatus("0");
|
|
|
298
|
+ dq.setOrg(ScoreLevelEnum.PERSON.getCode());
|
|
297
|
299
|
List<ScoreDimension> dims = scoreDimensionMapper.selectList(dq);
|
|
298
|
300
|
dims.sort(Comparator.comparing(d -> d.getSortOrder() == null ? 999 : d.getSortOrder()));
|
|
299
|
301
|
|