from typing import Optional class BaseConverter: def convert(self, data: bytes) -> Optional[bytes]: """所有转换器必须实现此方法""" raise NotImplementedError