parent
3df3b62d7a
commit
4239b6d6af
@ -0,0 +1,29 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 时间选择
|
||||
* @author hongyang
|
||||
* @version 1.0
|
||||
* @date 2023/09/14 16:44
|
||||
*/
|
||||
@Data
|
||||
public class ScreenTimePickerChart extends Chart {
|
||||
|
||||
@ApiModelProperty(notes = "组件类型")
|
||||
private String type = PageDesignConstant.BigScreen.Type.TIME_PICKER;
|
||||
|
||||
@ApiModelProperty(notes = "个性化")
|
||||
private Customize customize = new Customize();
|
||||
|
||||
@Data
|
||||
public static class Customize {
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue