from pydantic import BaseModel, Field class PhoneNumber(str): @classmethod def __get_validators__(cls): yield cls.validate_phone_number ...
確定! 回上一頁