您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

48 行
1.3 KiB

  1. from pydantic import BaseModel, Field
  2. from fastapi import Form, UploadFile
  3. from datetime import datetime
  4. from schemas.user import ShowDriver
  5. class CreateFuelingTask(BaseModel):
  6. VehicleId: int = Form(...)
  7. Description: str = Form(...)
  8. Date: datetime = Form(...)
  9. Cost: float = Form(...)
  10. FuelRefilled: float = Form(...)
  11. GasStationName: str = Form(...)
  12. ImageBefore: UploadFile = Form(...)
  13. ImageAfter: UploadFile = Form(...)
  14. model_config = {"arbitrary_types_allowed": True}
  15. class OutputFuelingTask(BaseModel):
  16. Id: int = Field(...)
  17. VehicleId: int = Field(...)
  18. Description: str = Field(...)
  19. Date: datetime = Field(...)
  20. Cost: float = Field(...)
  21. FuelRefilled: float = Field(...)
  22. GasStationName: str = Field(...)
  23. Driver: ShowDriver | None
  24. Creator: int | None
  25. ImageBefore: str = Field(...)
  26. ImageAfter: str = Field(...)
  27. model_config = {"arbitrary_types_allowed": True}
  28. class OutputFuelingTaskMin(BaseModel):
  29. Id: int = Field(...)
  30. VehicleId: int = Field(...)
  31. Description: str = Field(...)
  32. Date: datetime = Field(...)
  33. Cost: float = Field(...)
  34. Creator: int | None
  35. FuelRefilled: float = Field(...)
  36. GasStationName: str = Field(...)
  37. Driver: ShowDriver | None
  38. class OutputFuelingTaskList(BaseModel):
  39. FuelingTasks: list[OutputFuelingTaskMin]