|
@@ -50,12 +50,12 @@ public class AppTeamController extends BaseController {
|
|
|
Map<String, Object> comprehensiveEducationLabel = DictUtils.getDictCacheToMap(DictKeys.COMPREHENSIVE_EDUCATIONAL_BACKGROUND);
|
|
|
for (HashMap<String, Object> row:
|
|
|
rows ) {
|
|
|
- row.put("GenderLabel",comprehensiveGenderLabel.get(row.get("Gender").toString()));
|
|
|
- row.put("NationLabel",comprehensiveNationLabel.get(row.get("Nation").toString()));
|
|
|
- row.put("PoliticalOutlookLabel",comprehensivePoliticalOutlookLabel.get(row.get("PoliticalOutlook").toString()));
|
|
|
- row.put("LevelLabel",comprehensiveLevelLabel.get(row.get("Level").toString()));
|
|
|
- row.put("DutiesLabel",comprehensiveDutiesLabel.get(row.get("Duties").toString()));
|
|
|
- row.put("EducationLabel",comprehensiveEducationLabel.get(row.get("Education").toString()));
|
|
|
+ row.put("genderLabel",comprehensiveGenderLabel.get(row.get("gender").toString()));
|
|
|
+ row.put("nationLabel",comprehensiveNationLabel.get(row.get("nation").toString()));
|
|
|
+ row.put("politicalOutlookLabel",comprehensivePoliticalOutlookLabel.get(row.get("politicalOutlook").toString()));
|
|
|
+ row.put("levelLabel",comprehensiveLevelLabel.get(row.get("level").toString()));
|
|
|
+ row.put("dutiesLabel",comprehensiveDutiesLabel.get(row.get("duties").toString()));
|
|
|
+ row.put("educationLabel",comprehensiveEducationLabel.get(row.get("education").toString()));
|
|
|
|
|
|
}
|
|
|
return AjaxResult.success(tableDataInfo.getRows());
|