Compare commits

..

No commits in common. "ac24968064dafc7b32e9ea133782708a3dc107ea" and "0671fe76b05946321f83e0368a752b6eaa1a222d" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ public class AttentiontodoServiceImpl implements AttentiontodoService {
attentiontodoMapper.deleteall(updateReqVO);
if(updateReqVO.getTaskDispatchDetails()!=null&&updateReqVO.getTaskDispatchDetails().size()>0) {
Map<String, Object> mapp = (Map<String, Object>) updateReqVO.getTaskDispatchDetails().get(0);
// if (mapp.get("remindman") != null) {
if (mapp.get("remindman") != null) {
for (Object taskDispatchDetail : updateReqVO.getTaskDispatchDetails()) {
Map<String, Object> map = (Map<String, Object>) taskDispatchDetail;
Object remindmanValue = map.get("remindman");
@ -76,7 +76,7 @@ public class AttentiontodoServiceImpl implements AttentiontodoService {
attentiontodoMapper.insert(attentiontodo);
}
}
// }
}
}
@Override

View File

@ -22,7 +22,7 @@
SELECT a.*, b.tenant_id as txrid
FROM db_attentiontodo a
LEFT JOIN system_users b ON a.attr4 = b.nickname
INNER JOIN system_users b ON a.attr4 = b.nickname
WHERE a.attr2 = #{param1}
</select>