Commit 45c3f7ba by fudahua

Merge remote-tracking branch 'origin/developer' into developer

parents 9e9184cd c7d838bf
...@@ -34,7 +34,7 @@ public class PendingTaskServiceImpl implements PendingTaskService { ...@@ -34,7 +34,7 @@ public class PendingTaskServiceImpl implements PendingTaskService {
tabPendingTask.setUpdateTime(new Date()); tabPendingTask.setUpdateTime(new Date());
if (pendingTask != null) { if (pendingTask != null) {
tabPendingTask.setId(pendingTask.getId()); tabPendingTask.setId(pendingTask.getId());
pendingTaskMapper.updateByPrimaryKey(tabPendingTask); pendingTaskMapper.updateByPrimaryKeySelective(tabPendingTask);
} else { } else {
tabPendingTask.setCreateTime(new Date()); tabPendingTask.setCreateTime(new Date());
pendingTaskMapper.insertSelective(tabPendingTask); pendingTaskMapper.insertSelective(tabPendingTask);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment