package cn.cslg.pas.common.dto.customAnalyse; import cn.cslg.pas.domain.business.CustomAnalysisItemSource; import java.util.ArrayList; import java.util.List; public class SourceDataDTO { private List x; private List y; public SourceDataDTO() { this.x = new ArrayList<>(); this.y = new ArrayList<>(); } public List getX() { return x; } public void setX(List x) { this.x = x; } public List getY() { return y; } public void setY(List y) { this.y = y; } }