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

Commit f6199403 authored by 胡佳晨's avatar 胡佳晨

舞台英文名 小程序过滤英文名

parent 5c215b7b
......@@ -179,6 +179,12 @@ public class SweetAppletController {
returnArtist.add(item);
}
}
data.getStage().forEach(t->{
try {
t.setTitle(t.getTitle().split("&")[0]);
}catch (Exception e){
}
});
data.setData(returnArtist);
data.setTotal(allReturnArtist.size());
......
......@@ -171,6 +171,13 @@ public class SweetAppletMdskController {
}
}
data.getStage().forEach(t->{
try {
t.setTitle(t.getTitle().split("&")[0]);
}catch (Exception e){
}
});
data.setData(returnArtist);
data.setTotal(allReturnArtist.size());
return ResponseDto.success(data);
......
......@@ -168,6 +168,13 @@ public class SweetAppletTFCController {
}
}
data.getStage().forEach(t->{
try {
t.setTitle(t.getTitle().split("&")[0]);
}catch (Exception e){
}
});
data.setData(returnArtist);
data.setTotal(allReturnArtist.size());
return ResponseDto.success(data);
......
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