新增图表接口
This commit is contained in:
23
src/main/java/com/mini/capi/model/ChartResult.java
Normal file
23
src/main/java/com/mini/capi/model/ChartResult.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package com.mini.capi.model;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
public class ChartResult implements Serializable {
|
||||
|
||||
|
||||
private String name;
|
||||
|
||||
private String type;
|
||||
|
||||
private String value;
|
||||
|
||||
|
||||
public ChartResult(String name, String type, String value) {
|
||||
this.name = name;
|
||||
this.type = type;
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user