记得上下班打卡 | git大法好,push需谨慎

Commit 52545e84 authored by 胡佳晨's avatar 胡佳晨

舞台 添加 英文名

parent 96311cda
...@@ -35,6 +35,7 @@ public class RedisArDataUtils { ...@@ -35,6 +35,7 @@ public class RedisArDataUtils {
String redisKey = SweetConstant.REDIS_KEY_SWEET_MANUAL_ARTIST_TIME_LIST.concat(performanceId); String redisKey = SweetConstant.REDIS_KEY_SWEET_MANUAL_ARTIST_TIME_LIST.concat(performanceId);
// redisUtil.del(redisKey); // redisUtil.del(redisKey);
Object obj = redisUtil.get(redisKey); Object obj = redisUtil.get(redisKey);
redisUtil.del(redisKey);
if (obj == null) { if (obj == null) {
List<SweetPerformArtistTimeListDto> performArtistTimeList = new ArrayList<>(); List<SweetPerformArtistTimeListDto> performArtistTimeList = new ArrayList<>();
// 演出日期 // 演出日期
...@@ -72,8 +73,10 @@ public class RedisArDataUtils { ...@@ -72,8 +73,10 @@ public class RedisArDataUtils {
} }
for (SweetManualArtistStageListArDto stage : stageList) { for (SweetManualArtistStageListArDto stage : stageList) {
try { try {
stage.setEnTitle(stage.getTitle().split("&&")[1]); stage.setEnTitle(stage.getTitle().split("&")[1]);
stage.setTitle(stage.getTitle().split("&")[0]);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace();
stage.setEnTitle(""); stage.setEnTitle("");
} }
List<SweetManualArtistListArDto> artistListArList = new ArrayList<>(); List<SweetManualArtistListArDto> artistListArList = new ArrayList<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment