# -*- coding: utf-8 -*-
"""
@author: yq
@time: 2024/10/30
@desc: 数据实体类
"""
from .data_feaure_entity import DataFeatureEntity
from .db_config_entity import DbConfigEntity

__all__ = ['DataFeatureEntity', 'DbConfigEntity']

if __name__ == "__main__":
    pass