lyh
23 小时以前 582bb2627712f66157b5608c8f5798775fc38266
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
package org.jeecg.modules.eam.dto;
 
import lombok.Data;
import lombok.experimental.Accessors;
 
/**
 *  @Description: EchartsDto
 *  @Date:2021/5/20
 *  @Version:V1.0
 */
@Data
@Accessors(chain = true)
public class EchartsDto {
 
    public EchartsDto() {
 
    }
 
    public EchartsDto(String code, String name, String value, String total, String percentage) {
        this.code = code;
        this.name = name;
        this.value = value;
        this.total = total;
        this.percentage = percentage;
    }
 
    /**
     * code
     */
    private String code;
    /**
     * name
     */
    private String name;
    /**
     * 值
     */
    private String value;
 
    /**
     * 总数
     */
    private String total;
 
    /**
     * 占比
     */
    private String percentage;
 
 
 
}