Commit 58c29ffd authored by ZWT's avatar ZWT

feat(能源管理系统): 间开制度管理

1.创建space_interval_system 间开制度详情,space_interval_wellhead_config
间开制度井口配置,space_interval_duration
间开制度小间开时段配置表,生成相关代码并添加到项目space模块,解决编译报错问题;
2.添加间开制度管理模块接口文档配置;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent 28a015d6
package pps.core.space.module;
import pps.core.common.utils.ManifestComponentInfoHelper;
import xstartup.annotation.XText;
import xstartup.base.XContext;
import xstartup.base.XModule;
/**
* 间开制度模块
*
* @author ZWT
* @date 2023/08/29
*/
@XText("间开制度模块")
public class PpsCoreSpaceModule extends XModule {
protected PpsCoreSpaceModule() {
super(1009);
}
@Override
protected void onStarted(XContext context) {
ManifestComponentInfoHelper.init(this.getClass().getClassLoader());
}
}
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment