kongdeqiang
2023-02-17 ac94b1d939373a684344764e5b00dac44feabd81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.wgcloud.dto;
 
import com.wgcloud.entity.BaseEntity;
 
/**
 * @version v3.3
 * @ClassName:ChartInfo.java
 * @author: http://www.wgstart.com
 * @date: 2021年1月16日
 * @Description: 图表显示组装json用,公共类
 * @Copyright: 2019-2021 wgcloud. All rights reserved.
 */
public class ChartInfo extends BaseEntity {
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    //名称
    private String item;
 
    //值
    private Integer count;
 
    //百分比
    private Double percent;
 
    //水波图表还必须要用value属性做名称,其他属性名称不行,会导致字体位置偏移
    private Double value;
 
    public String getItem() {
        return item;
    }
 
    public void setItem(String item) {
        this.item = item;
    }
 
    public Integer getCount() {
        return count;
    }
 
    public void setCount(Integer count) {
        this.count = count;
    }
 
    public Double getPercent() {
        return percent;
    }
 
    public void setPercent(Double percent) {
        this.percent = percent;
    }
 
    public Double getValue() {
        return value;
    }
 
    public void setValue(Double value) {
        this.value = value;
    }
}