新增图表接口
This commit is contained in:
@@ -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;
|
||||
|
||||
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