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.
28 lines
528 B
28 lines
528 B
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
# @Time : 2023/4/9 14:41
|
|
# @Author : old tom
|
|
# @File : metadata_warehouse.py
|
|
# @Project : futool-tiny-datahub
|
|
# @Desc : 元数据存储
|
|
|
|
from common.futool.fu_id import id_gen
|
|
|
|
|
|
class MetadataWareHouse(object):
|
|
"""
|
|
元数据仓库
|
|
"""
|
|
|
|
def __init__(self, source_id):
|
|
self.source_id = source_id
|
|
|
|
def save_metadata_obj(self):
|
|
pass
|
|
|
|
def save_metadata_obj_detail(self):
|
|
pass
|
|
|
|
def save_metadata_obj_field(self):
|
|
pass
|