|
@@ -201,6 +201,7 @@ public class PoTetherServiceImpl extends ServiceImpl<PoTetherMapper,PoTether> im
|
|
|
lambdaQueryWrapper.eq(PoTetherandcollection::getTetherId,tetherVo.getTetherId());
|
|
|
poTetherandcollectionService.remove(lambdaQueryWrapper);
|
|
|
// //添加当前提交过来的藏品数据--po_Tetherandcollection表的insert操作
|
|
|
+
|
|
|
for (int i = 0 ; i < tetherVo.getPoTetherandcollections().size();i++) {
|
|
|
|
|
|
System.out.println(tetherVo.getPoTetherandcollections().get(i).getCollectionTitle());
|
|
@@ -324,7 +325,7 @@ public class PoTetherServiceImpl extends ServiceImpl<PoTetherMapper,PoTether> im
|
|
|
*/
|
|
|
@Override
|
|
|
public boolean updatePoTetherIsGrounding(Integer grounding, Long tetherId) {
|
|
|
- return poTetherMapper.updatePoTetherIsGrounding(grounding, tetherId);
|
|
|
+ return poTetherMapper.updatePoTetherIsGrounding(grounding, tetherId);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -339,5 +340,14 @@ public class PoTetherServiceImpl extends ServiceImpl<PoTetherMapper,PoTether> im
|
|
|
return poTetherMapper.selectPoTetherCollectionList(poTether);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 已经上架只允许修改展示结束时间
|
|
|
+ * @param tetherVo
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void updateShowTimeEnd(TetherVo tetherVo) {
|
|
|
+ poTetherMapper.updateShowTimeEnd(tetherVo);
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|