新增图表接口

This commit is contained in:
2025-11-11 19:25:37 +08:00
parent e91e359041
commit 6f637a8700
2 changed files with 24 additions and 1 deletions

View 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;
}
}