25 lines
410 B
Java
25 lines
410 B
Java
package com.mini.capi.model;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
|
|
@Data
|
|
public class ChartResult implements Serializable {
|
|
|
|
|
|
private String name;
|
|
|
|
private String type;
|
|
|
|
private BigDecimal value;
|
|
|
|
|
|
public ChartResult(String name, String type, BigDecimal value) {
|
|
this.name = name;
|
|
this.type = type;
|
|
this.value = value;
|
|
}
|
|
}
|