付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
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
package com.wgcloud.dto;
 
import com.wgcloud.entity.BaseEntity;
 
/**
 * @version v3.3
 * @ClassName:ChartDapingNewInfo.java
 * @author: http://www.wgstart.com
 * @date: 2022年6月11日
 * @Description: 新大屏图表显示组装json用,公共类
 * @Copyright: 2019-2022 wgcloud. All rights reserved.
 */
public class ChartDapingNewInfo extends BaseEntity {
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    //名称
    private String name;
 
    //值
    private Integer value;
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Integer getValue() {
        return value;
    }
 
    public void setValue(Integer value) {
        this.value = value;
    }
}