Files
ecm_sync_system/sync_state_machine/domain/supplier/jsonl_handler.py
T
strepsiades f5729d5a18 整理代码
2026-04-03 09:18:44 +08:00

13 lines
413 B
Python

"""
Supplier JSONL Handler
"""
from ...datasource import BaseJsonlHandler, JsonlDataSource
from .sync_node import SupplierSyncNode
from schemas.supplier.supplier import SupplierDetailResponse
class SupplierJsonlHandler(BaseJsonlHandler):
"""供应商 JSONL Handler"""
def __init__(self, datasource: JsonlDataSource):
super().__init__(datasource, SupplierSyncNode, schema=SupplierDetailResponse)