fix(employee-hosts): 补充保存时缺失的countryEng字段赋值

This commit is contained in:
2026-02-10 21:48:41 +08:00
parent d89676296a
commit 6d6c5f93df
2 changed files with 3 additions and 2 deletions

View File

@@ -132,6 +132,7 @@ public class EmployeeHostsServiceImpl implements EmployeeHostsService {
newHostsDOArrayList.add(newHostsDO);
EmployeeHostsDO employeeHostsDO = BeanUtils.toBean(employeeHostsSaveReqVO, EmployeeHostsDO.class);
employeeHostsDO.setOperationStatus(0);
employeeHostsDO.setCountryEng(employeeHostsSaveReqVO.getCountryEng());
employeeHostsDOS.add(employeeHostsDO);
}
Long tenantId = TenantContextHolder.getTenantId();