package com.wgcloud.dto; import com.wgcloud.entity.BaseEntity; /** * @version v3.3 * @ClassName:ChartInfo.java * @author: http://www.wgstart.com * @date: 2021年9月16日 * @Description: 统计报表,柱状图图表显示组装json用,公共类 * @Copyright: 2019-2021 wgcloud. All rights reserved. */ public class ChartReportInfo extends BaseEntity { /** * */ private static final long serialVersionUID = 1L; private String name; private Integer vote; private Double value; public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getVote() { return vote; } public void setVote(Integer vote) { this.vote = vote; } public Double getValue() { return value; } public void setValue(Double value) { this.value = value; } }