This repository was archived by the owner on Feb 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmodelo.jh
197 lines (168 loc) · 3.57 KB
/
modelo.jh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
entity Paciente {
nome String required
nomeSocial String
dataDeNascimento LocalDate required
horaDeNascimento Instant
email String unique
observacao String
grauDeInstrucao GrauDeInstrucao required
sexo Sexo required
}
relationship OneToOne {
Paciente to CartaoSUS
}
relationship OneToMany {
Paciente{telefone} to Telefone,
Paciente{endereco} to Endereco
}
relationship ManyToOne {
Endereco{municipio} to Municipio
Municipio{uf} to UF,
Paciente{responsavel} to Responsavel,
Paciente{documento} to Documento ,
Paciente{certidao} to Certidao,
Paciente{ocupacao} to Ocupacao,
Paciente{religiao} to Religiao,
Paciente{naturalidade} to Municipio,
Paciente{etnia} to Etnia,
Paciente{genitores} to Genitores,
Paciente{nacionalidade} to Nacionalidade,
Paciente{raca} to Raca,
Paciente{estadoCivil} to EstadoCivil,
Responsavel{telefone} to Telefone,
Responsavel{grauDeParentesco} to GrauDeParentesco,
Documento{orgaoEmissor} to OrgaoEmissor,
Documento{uf} to UF,
CartaoSUS{justificativa} to Justificativa,
CartaoSUS{motivoDoCadastro} to MotivoDoCadastro
}
entity Nacionalidade {
valor String required
}
entity Etnia {
valor String required
}
entity Genitores {
prontuarioDaMae String
nomeDaMae String required
nomeDoPai String required
}
entity Ocupacao {
valor String required
}
entity Religiao {
valor String required
}
entity Telefone {
ddd String required
numero String required
tipo TipoDoContato
observacao String
}
entity UF {
unidadeFederativa String required
sigla String required
}
entity Municipio {
nome String required
nomeDoDistrito String
ibge String required
}
entity Endereco {
cep String required
logradouro String required
numero String required
complemento String
bairro String required
correspondencia Boolean required
tipoDoEndereco TipoDoEndereco
}
entity Responsavel {
nomeDoResponsavel String
}
entity OrgaoEmissor {
valor String required
}
entity Documento {
numeroDaIdentidade String
data LocalDate
cpf String
pisPasep String
validadeDaCnh LocalDate
documentosApresentados Boolean
}
entity Certidao {
registroDeNascimento String
tipoDaCertidao TipoDaCertidao
nomeDoCartorio String
livro String
folhas String
termo String
dataDeEmissao LocalDate
numeroDaDeclaracaoDeNascimento String
}
entity CartaoSUS {
numero String required
documentoDeReferencia DocumentoDeReferencia
cartaoNacionalSaudeMae String
dataDeEntradaNoBrasil LocalDate
dataDeNaturalizacao LocalDate
portaria String
}
entity Justificativa {
valor String required
}
entity MotivoDoCadastro {
valor String required
}
entity Raca {
valor String required
}
entity EstadoCivil {
valor String required
}
entity GrauDeParentesco {
valor String required
}
enum DocumentoDeReferencia {
APAC,
AIH
}
enum TipoDaCertidao {
NASCIMENTO,
CASAMENTO,
SEPARACAO_DIVORCIO,
INDIGENA
}
enum TipoDoEndereco {
COMERCIAL,
RESIDENCIAL,
CONTATO,
OUTROS
}
enum TipoDoContato {
CELULAR,
RESIDENCIAL,
RECADO,
COMERCIAL,
EMERGENCIAL
}
enum GrauDeInstrucao {
NENHUM,
IGNORADO,
PRIMEIRO_GRAU_INCOMPLETO,
PRIMEIRO_GRAU_COMPLETO,
SEGUNDO_GRAU_INCOMPLETO,
SEGUNDO_GRAU_COMPLETO,
SUPERIOR_INCOMPLETO,
SUPERIOR_COMPLETO
}
enum Sexo {
MASCULINO,
FEMININO,
IGNORADO
}
dto * with mapstruct
paginate * with pagination
service * with serviceClass
skipClient *