python @dataclass datetime
dataclass 是 Python 自带的一个装饰器(dataclasses 模块),作用是自动帮你生成 __init__、__repr__、__eq__ 等样板代码。不用 dataclass 时class ParseDTOContext:def __init__(self, username: str, file_name: str, file_type: str, ...):…
2026/7/27 6:35:39