コード例 #1
0
class ActionItemSchema(Model):
    title: str
    form: Form = Reference()
    submission: Submission = Reference()
    action: str
    handler: str
    method: str
    state: Literal['new', 'inprogress', 'complete', 'error'] = 'new'
    messages: List[Any] = []
    data: Dict = {}
コード例 #2
0
ファイル: notificacion.py プロジェクト: al375846/backend
class Notificacion(Model):
    fechaActivacion: datetime = datetime.now()
    contenido: str
    tipo_medicion: TipoMedicion
    establecimiento: EstablecimientoDB = Reference()
    leido: bool = False
    id_img:Optional[str]
コード例 #3
0
class Action(Model):
    title: str
    name: str
    handler: List[str]
    method: List[str]
    condition: Dict = {}
    priority: int = 0
    settings: Dict = {}
    form: Form = Reference()
    deleted: Optional[int]
コード例 #4
0
ファイル: test_models.py プロジェクト: daqube2/odmantic
 class Base(Model):
     field: Referenced = Reference()
コード例 #5
0
class Book(Model):
    title: str
    pages: int
    publisher: Publisher = Reference()
コード例 #6
0
ファイル: notificacion.py プロジェクト: al375846/backend
class NotificacionAdmin(Model):
    responsable: Administrador = Reference()
    gerente: Optional[str] 
    tipo:TipoNotificacion
    contenido: Optional[str]
    fecha: datetime = datetime.now()
コード例 #7
0
ファイル: notificacion.py プロジェクト: al375846/backend
class NotificacionRet(Model):
    fechaActivacion: datetime = datetime.now()
    contenido: str
    tipo_medicion: TipoMedicion
    establecimiento: EstablecimientoRet = Reference()
    leido: bool = False
コード例 #8
0
class EstablecimientoDB(Model):
    descriptor: str
    direccion: str
    configuracion: ConfiguracionEstablecimiento
    gerente: Gerente = Reference()
    mediciones: List[Medicion] = []
コード例 #9
0
class Incidencia(Model):
    cuerpo: str
    titulo: str
    gerente: Gerente = Reference()