问题修复

This commit is contained in:
hongchao 2025-10-17 14:44:28 +08:00
parent 09a9ac8cef
commit f99abf6cf4
3 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ public class MachineInfoBean {
private String personName;
// 联系方式
private String persoPhone;
private String personPhone;
private String specification;
private String materialName;

View File

@ -1098,7 +1098,7 @@ public class IwsCostPushServiceImpl implements IwsCostPushService {
// 判断是租赁费用更新租赁费用数据
iwsCostPushMapper.updatePushProjectInfo(pushBean);
} else {
iwsCostPushMapper.updatePushBsd(pushBean);
iwsCostPushMapper.updatePushProjectInfo(pushBean);
}
}
} catch (Exception e) {

View File

@ -186,7 +186,7 @@ public class ProDataUseInfoImpl implements ProDataUseInfoService {
for (MachineInfoBean machineDetail : maTypeList) {
SysUser user = proDataUseInfoMapper.getPersonNameAndPhone(machineDetail);
machineDetail.setPersonName(user.getNickName());
machineDetail.setPersoPhone(user.getPhonenumber());
machineDetail.setPersonPhone(user.getPhonenumber());
}
return maTypeList;
}