-
-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🚧 Feat (jobs,users,candidacy): Criação da entidade candi… #174
base: main
Are you sure you want to change the base?
🚧 Feat (jobs,users,candidacy): Criação da entidade candi… #174
Conversation
…ositório candidacy com métodos create, findByUsuarioId e updateStatus.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Algumas observações
…): Padronização dos atributos em inglês e criação de um enum para o status de vaga.
…ndOne e retirada a verificaçao de array e criado o método findByUserId
…efined para console.log e utilização do throw new Error.
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correto!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok!
Modelagem de Dados e Repositório:
Modelagem de Dados:
◦ Criar a entidade Candidatura com os campos:
▪ id
▪ vagaId (referência à vaga)
▪ usuarioId (referência ao usuário)
▪ status (em andamento, encerrada, sem interesse)
▪ dataCandidatura
▪ dataEncerramento
◦ Relacionar com as tabelas de Vagas e Usuários.
Repositório
CandidaturaRepository:
◦ Implementar métodos:
▪ create(candidatura: Candidatura): Cria um novo registro de candidatura.
▪ findByUsuarioId(usuarioId: UUID): Busca todas as candidaturas do usuário.
▪ updateStatus(id: UUID, status: string): Atualizar o status da candidatura.