|
@@ -595,12 +595,12 @@ public class BuildScenePostServiceImpl implements IBuildScenePostService {
|
|
|
|
|
|
//更新场景创建时间
|
|
|
scenePlusService.update(new LambdaUpdateWrapper<ScenePlus>().in(ScenePlus::getId, sceneIds)
|
|
|
- .set(ScenePlus::getCreateTime, Calendar.getInstance().getTime())
|
|
|
.set(ScenePlus::getSceneStatus, SceneStatus.NO_DISPLAY.code()));
|
|
|
|
|
|
//更新使用容量
|
|
|
- scenePlusExtService.update(new LambdaUpdateWrapper<ScenePlusExt>()
|
|
|
- .in(ScenePlusExt::getPlusId, sceneIds).set(ScenePlusExt::getSpace, space));
|
|
|
+ scenePlusExtService.update(new LambdaUpdateWrapper<ScenePlusExt>().in(ScenePlusExt::getPlusId, sceneIds)
|
|
|
+ .set(ScenePlusExt::getSpace, space)
|
|
|
+ .set(ScenePlusExt::getAlgorithmTime, Calendar.getInstance().getTime()));
|
|
|
}
|
|
|
|
|
|
private ScenePlus updateDbPlus(String num, Long space, Integer payStatus, String videosJson, Long computeTime, String fileId) throws Exception{
|