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

Commit a57e811a authored by jiangxiulong's avatar jiangxiulong

mergeRoadList

parent 0b50a4f2
......@@ -156,12 +156,12 @@ public class KylinPerformancesServiceImpl implements IKylinPerformancesService {
return newList;
}
private List<KylinPerformanceVo> mergeRoadList(List<KylinPerformanceVo> PerformanceList) {
List<String> roadIdList = Arrays.asList();
private List<KylinPerformanceVo> mergeRoadList(List<KylinPerformanceVo> performanceList) {
List<String> roadIdList = new ArrayList<>();
List<KylinPerformanceVo> newList = ObjectUtil.getKylinPerformanceVoArrayList();
for (KylinPerformanceVo info : PerformanceList) {
for (KylinPerformanceVo info : performanceList) {
String roadShowId = info.getRoadShowId();
if (null != roadShowId && !roadShowId.isEmpty()) {
if (null != roadShowId && !roadShowId.isEmpty() && !roadShowId.equals("0")) {
if (!roadIdList.contains(info.getRoadShowId())) {
newList.add(info);
roadIdList.add(roadShowId);
......
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