新增图表接口

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

@@ -20,7 +20,7 @@ import lombok.Setter;
*/
@Getter
@Setter
@TableName("erp_period_summary")
@TableName("erp_period_summary_view")
public class ErpPeriodSummary implements Serializable {
private static final long serialVersionUID = 1L;

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