Compare commits

..

No commits in common. "1bb2f5dcf70b6df8a787294afe044c6285779805" and "cfe3528d824946ef713115d5e143fa6a8d8ea62c" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ public class PmAttDeviceServiceImpl implements PmAttDeviceService {
if(pmAttDevice.getTeamId()!=null){
teamId=pmAttDevice.getTeamId();
}
uakSendService.getUserSendToDev(pmAttDevice.getDeviceCode(),subId,teamId,proId);
uakSendService.getUserSendToDev(pmAttDevice.getDeviceCode(),proId,subId,teamId);
return pmAttDeviceMapper.addPmAttDevice(pmAttDevice);
}
@ -106,7 +106,7 @@ public class PmAttDeviceServiceImpl implements PmAttDeviceService {
uakSendService.delDevByProId(pmAttDevice.getDeviceCode(),proId,subId,teamId);
}else {
//新增考勤机触发
uakSendService.getUserSendToDev(pmAttDevice.getDeviceCode(),subId,teamId,proId);
uakSendService.getUserSendToDev(pmAttDevice.getDeviceCode(),proId,subId,teamId);
}
return pmAttDeviceMapper.updatePmAttDevice(pmAttDevice);
}