You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
895 B
47 lines
895 B
package com.fanruan.boot.env.function; |
|
|
|
import com.fanruan.boot.ChartBaseComponent; |
|
import com.fanruan.carina.annotions.DependsOn; |
|
import com.fanruan.carina.annotions.FineComponent; |
|
import com.fanruan.carina.annotions.Start; |
|
import com.fanruan.carina.annotions.Stop; |
|
import com.fanruan.carina.annotions.Supplemental; |
|
|
|
|
|
/** |
|
* DesignChartBaseComponent |
|
* |
|
* @author Destiny.Lin |
|
* @since 11.0 |
|
* Created on 2024/7/2 |
|
*/ |
|
@FineComponent(name = "design_function_chart_base") |
|
@DependsOn(dependencies = "design_function_datasource") |
|
public class DesignChartBaseComponent extends ChartBaseComponent { |
|
|
|
/** |
|
* start |
|
*/ |
|
@Start |
|
public void start() { |
|
super.start(); |
|
} |
|
|
|
|
|
/** |
|
* stop |
|
*/ |
|
@Stop |
|
public void stop() { |
|
super.stop(); |
|
} |
|
|
|
/** |
|
* prepare |
|
*/ |
|
@Supplemental |
|
public void prepare() { |
|
super.prepare(); |
|
} |
|
|
|
}
|
|
|