fix(wms): 修复产品服务中更新时间字段设置问题

- 在WmsProductServiceImpl中添加了updateTime字段的正确设置
- 确保coils记录在更新时保持正确的更新时间戳
- 防止因时间字段未正确设置导致的数据同步问题
This commit is contained in:
2026-04-14 10:14:52 +08:00
parent a62ef2d0b0
commit 910ec2b22f

View File

@@ -418,6 +418,7 @@ public class WmsProductServiceImpl implements IWmsProductService {
if (newItemId != null) {
coil.setItemId(newItemId);
coil.setUpdateTime(coil.getUpdateTime());
coilMapper.updateById(coil);
}
}