Program/mooc/schemas/images_reply.py

20 lines
354 B
Python
Raw Normal View History

from pydantic import BaseModel
class ImagesReplyBase(BaseModel):
rid: int
title: str
description: str
mediaid: str
createtime: int
class ImagesReplyCreate(ImagesReplyBase):
pass
class ImagesReplyUpdate(ImagesReplyBase):
pass
class ImagesReply(ImagesReplyBase):
id: int
class Config:
from_attributes = True