|
@@ -233,7 +233,8 @@ public class QcresultInfoFacade extends QcresultInfoServiceImpl {
|
|
|
qcresultDetailList.forEach(qcresultDetail -> {
|
|
|
//原手动添加缺陷绑定新机器评分id
|
|
|
qcresultDetail.setQcresultInfoId(newId);
|
|
|
- qcresultDetail.setGmtModified(DateUtil.now());
|
|
|
+ //当前时间下一秒(和上一条记录删除修改时间区分开)
|
|
|
+ qcresultDetail.setGmtModified(new Date(System.currentTimeMillis()+1000));
|
|
|
});
|
|
|
}
|
|
|
List<QcResultAlgVO> qcResultAlgVORes = algorithmVO.getQcResultAlgVOList();
|