1234567891011121314 |
- """
- @author: yq
- @time: 2024/10/30
- @desc: 数据实体类
- """
- from .data_feaure_entity import DataFeatureEntity
- from .db_config_entity import DbConfigEntity
- from .metric_entity import MetricTrainEntity
- __all__ = ['DataFeatureEntity', 'DbConfigEntity', 'MetricTrainEntity']
- if __name__ == "__main__":
- pass
|