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
| package com.fzzy.igds.data;
|
| import lombok.Data;
|
| /**
| * @Description
| * @Author CZT
| * @Date 2025/12/25 9:35
| */
| @Data
| public class ChartPie {
|
| private String value;
|
| private String name;
|
| private String percent;
|
| public ChartPie() {
| super();
| }
|
| public ChartPie(String value, String name, String percent) {
| this.value = value;
| this.name = name;
| this.percent = percent;
| }
| }
|
|