Coder Social home page Coder Social logo

ifrn-padb-mindmeet-api-backend's Introduction

MindMeet-PADB

Descrição

O projeto MindMeet-PADB é um aplicativo de gerenciamento de tarefas que permite aos usuários criar e gerenciar tarefas em um quadro. O aplicativo é construído usando o framework FastAPI e o banco de dados PostgreSQL.

Objetivo da atividade

O objetivo deste projeto é fornecer uma plataforma para agendamento de teleconsultas entre psicólogos e clientes. O sistema permite que os usuários adicionem ou removam agendamentos do banco de dados.

UML

erDiagram

    PATIENT

    PSYCHOLOGIST {
        int id PK
        string email
        string full_name
        string city
        boolean is_staff
        boolean is_superuser
        boolean is_active
        datetime date_joined   
    }
    
    APPOINTMENTS {
        int id PK
        string psychologist_id FK
        string patient_id FK
        string agenda_day_hour_id FK
        string status
        string reason
        boolean anonymous
        datetime created_at
        datetime updated_at
    }

    REQUESTS-APPOINTMENTS {
        int id PK
        string psychologist_id FK
        string patient_id FK
        int agenda_day_hour_id FK
        string status
        string reason
        datetime created_at
        datetime updated_at
    }

    AGENDA {
        int id PK
        string psychologist_id FK
        datetime created_at
        datetime updated_at
    }

    AGENDA-DAY-HOUR {
        int id PK
        string agenda_id FK
        datetime start_date_time
        datetime end_date_time
    }

    PATIENT ||--o{ REQUESTS-APPOINTMENTS : "request"
    PSYCHOLOGIST ||--o{ REQUESTS-APPOINTMENTS : "accepts or rejects request"
    PSYCHOLOGIST ||--o{ APPOINTMENTS : "conducts"
    PATIENT ||--o{ APPOINTMENTS : "participates in"
    PSYCHOLOGIST ||--|| AGENDA : "has"
    AGENDA ||--o{ AGENDA-DAY-HOUR : "consists of"
Loading

References

ifrn-padb-mindmeet-api-backend's People

Contributors

jackson-vieira avatar limahugovt avatar phsl12 avatar janduijr avatar

Watchers

 avatar

ifrn-padb-mindmeet-api-backend's Issues

Criacao dos casos de uso para agenday_day_hour

Criacao do usecases para criar uma agenda_day_hour

Comando para inserir agenda day hour no backend de dados

arquivo: app/usecases/agenda.py

Criacao do usecases para criar um listar todos os agenda_day_hour pelo id

Comando para selecionar todos os horarios disponiveis de uma agenda pelo id

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.