model.py 199 B

1234567891011121314
  1. """
  2. encoding: UTF-8
  3. @author:clx
  4. @file:model.py
  5. @time:2023/5/30 6:29
  6. """
  7. from typing import Optional
  8. from pydantic import BaseModel
  9. class Item(BaseModel):
  10. id: int
  11. name: str