updateByPrimaryKeySelective

This commit is contained in:
guohb
2024-04-03 18:36:08 +08:00
parent fb312f3935
commit ba77996d7a

View File

@@ -49,7 +49,7 @@ public class TrainingExperienceServiceImpl extends LineFlowService implements Tr
LineInfoDO lineInfoDO = new LineInfoDO();
lineInfoDO.setWorkflowSubStage(WorkflowSubStageEnum.SIGN_INTENT_AGREEMENT.getCode());
lineInfoDO.setId(request.getLineId());
lineInfoMapper.updateByPrimaryKey(lineInfoDO);
lineInfoMapper.updateByPrimaryKeySelective(lineInfoDO);
return true;
}