|
@ -106,12 +106,17 @@ public class EmployeeManagementServiceImpl implements EmployeeManagementService
|
106
|
106
|
resultMap.put("organizationCode", response.getData().getOrganizeCode());
|
107
|
107
|
resultMap.put("organizationName", response.getData().getOrgName());
|
108
|
108
|
resultMap.put("age", response.getData().getAge());
|
|
109
|
|
109
|
110
|
resultMap.put("mainWirelessCall", response.getData().getMainWirelessCall());
|
110
|
111
|
resultMap.put("field1", response.getData().getField1()); // 头像标识
|
111
|
112
|
resultMap.put("field2", response.getData().getField2()); // 审核结果
|
112
|
113
|
resultMap.put("field3", response.getData().getField3()); // 审核意见
|
113
|
114
|
resultMap.put("field4", response.getData().getField4()); // 公司
|
114
|
115
|
|
|
116
|
if (response.getData().getBirthday()!=null) {
|
|
117
|
resultMap.put("birthday", String.valueOf(response.getData().getBirthday().getTime()));
|
|
118
|
}
|
|
119
|
|
115
|
120
|
resultMap.put("pictureUrl",
|
116
|
121
|
uploadFileService.getFileUrl(response.getData().getField1(), minioConfig.getBucketHeaderImage()));
|
117
|
122
|
|