fix: G2组件的setting配置项改为使用Map列表存储

G2组件的setting配置项改为使用Map列表存储
main
hong.yang 2 years ago
parent 7f01fc4191
commit 5daa4abd0f

@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.List;
import java.util.Map;
/**
*
@ -38,7 +39,7 @@ public class CustomComponentChart extends Chart {
private Object option;
@ApiModelProperty(notes = "右侧面板自定义配置")
private List<Setting> setting;
private List<Map<String, Object>> setting;
@ApiModelProperty(notes = "组件的唯一名称")
private String name;

Loading…
Cancel
Save