歌手页

This commit is contained in:
2024-07-09 15:29:31 +08:00
parent abc13bcf69
commit 5c960ec661

View File

@@ -63,8 +63,9 @@ public class TbShopSongOrderServiceImpl extends ServiceImpl<TbShopSongOrderMappe
List<SingerSongVo> byState = tbShopSongOrderMapper.findByState(2, shopId);
if(CollectionUtils.isEmpty(byState)){
map.put("afoot","");//演唱中
}else {
map.put("afoot",byState.get(0));//演唱中
}
map.put("afoot",byState.get(0));//演唱中
map.put("Waiting",tbShopSongOrderMapper.findByState(1,shopId));
return map;
}