feat(t221): add exact-order erp connector

This commit is contained in:
QiuSW
2026-07-28 22:52:52 +08:00
parent 305dd9f513
commit c524e734fb
16 changed files with 1599 additions and 14 deletions
@@ -0,0 +1,25 @@
"""顺运宝 ERP 客户端。"""
from .client import ERPClient
from .errors import (
ERPAPIError,
ERPAuthenticationError,
ERPError,
ERPNotFoundError,
ERPProtocolError,
ERPTransportError,
)
from .normalizer import normalize_freight_result
__all__ = [
"ERPClient",
"ERPError",
"ERPTransportError",
"ERPProtocolError",
"ERPAPIError",
"ERPAuthenticationError",
"ERPNotFoundError",
"normalize_freight_result",
]
__version__ = "0.1.0"