package thyyxxk.webserver.entity.highreport; import lombok.Data; import java.math.BigDecimal; /** * @Description: 图表X,Y轴数据实体 * @Author: hsh * @CreateTime: 2022-11-03 09:08 * @Version: 1.0 */ @Data public class XYBean { private String x; private BigDecimal y; }