[MVPTN-58] feat(CrudTipoReconhecimento): Criação do CRUD para a tabela T_TB_RECONHECIMENTOTIPO
This commit is contained in:
parent
6a83430888
commit
f7275c438f
1 changed files with 16 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
from datetime import date
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class TTBReconhecimentoTipoSchema(BaseModel):
|
||||
"""
|
||||
Schema para a tabela T_TB_RECONHECIMENTOTIPO.
|
||||
"""
|
||||
tb_reconhecimentotipo_id: Optional[int] = None
|
||||
descricao: Optional[str] = None
|
||||
situacao: Optional[str] = None
|
||||
|
||||
class Config:
|
||||
from_attributes = True
|
||||
Loading…
Add table
Reference in a new issue