Merge remote-tracking branch 'origin/master'
commit
b630a8208b
@ -0,0 +1,43 @@
|
||||
package com.gccloud.dataroom.core.module.chart.components;
|
||||
|
||||
import com.gccloud.dataroom.core.constant.PageDesignConstant;
|
||||
import com.gccloud.dataroom.core.module.chart.bean.Chart;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* tab切换
|
||||
* @author hongyang
|
||||
* @version 1.0
|
||||
* @date 2023/8/24 17:03
|
||||
*/
|
||||
@Data
|
||||
public class ChartTabChart extends Chart{
|
||||
|
||||
|
||||
@ApiModelProperty(notes = "类型")
|
||||
private String type = PageDesignConstant.BigScreen.Type.TAB_CHART;
|
||||
|
||||
@ApiModelProperty(notes = "个性化")
|
||||
private Customize customize = new Customize();
|
||||
|
||||
@Data
|
||||
public static class Customize {
|
||||
|
||||
@ApiModelProperty(notes = "组件tab列表")
|
||||
private List tabList;
|
||||
|
||||
@ApiModelProperty(notes = "字体大小")
|
||||
private Integer fontSize;
|
||||
|
||||
@ApiModelProperty(notes = "字体粗细")
|
||||
private Integer fontWeight;
|
||||
|
||||
@ApiModelProperty(notes = "字体颜色")
|
||||
private String color;
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue