Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
th-app-java
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Oscar Enrique Gonzalez Escurra
th-app-java
Commits
4e3dac4e
You need to sign in or sign up before continuing.
Commit
4e3dac4e
authored
Oct 28, 2021
by
Nelson Ruiz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
se crearon modelos de Experiencia y Experiencia reconocimiento
parent
f6f243ef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
99 additions
and
2 deletions
+99
-2
curriculumsearch/src/main/java/com/roshka/modelo/Experiencia.java
+61
-1
curriculumsearch/src/main/java/com/roshka/modelo/ExperienciaReconocimiento.java
+38
-1
No files found.
curriculumsearch/src/main/java/com/roshka/modelo/Experiencia.java
View file @
4e3dac4e
package
com
.
roshka
.
modelo
;
import
java.sql.Date
;
import
javax.persistence.Column
;
import
javax.persistence.Entity
;
import
javax.persistence.GeneratedValue
;
import
javax.persistence.GenerationType
;
import
javax.persistence.*
;
@Entity
@Table
(
name
=
"experiencia"
)
public
class
Experiencia
{
@Id
@GeneratedValue
(
strategy
=
GenerationType
.
AUTO
)
private
long
id
;
@Column
(
name
=
"institucion"
)
private
String
institucion
;
@Column
(
name
=
"fecha_desde"
)
private
Date
fechaDesde
;
@Column
(
name
=
"fecha_hasta"
)
private
Date
fechaHasta
;
@Column
(
name
=
"referencias"
)
private
String
referencias
;
@Column
(
name
=
"cargo"
)
private
String
cargo
;
public
long
getId
()
{
return
id
;
}
public
void
setId
(
long
id
)
{
this
.
id
=
id
;
}
public
String
getInstitucion
()
{
return
institucion
;
}
public
void
setInstitucion
(
String
institucion
)
{
this
.
institucion
=
institucion
;
}
public
Date
getFechaDesde
()
{
return
fechaDesde
;
}
public
void
setFechaDesde
(
Date
fechaDesde
)
{
this
.
fechaDesde
=
fechaDesde
;
}
public
Date
getFechaHasta
()
{
return
fechaHasta
;
}
public
void
setFechaHasta
(
Date
fechaHasta
)
{
this
.
fechaHasta
=
fechaHasta
;
}
public
String
getReferencias
()
{
return
referencias
;
}
public
void
setReferencias
(
String
referencias
)
{
this
.
referencias
=
referencias
;
}
public
String
getCargo
()
{
return
cargo
;
}
public
void
setCargo
(
String
cargo
)
{
this
.
cargo
=
cargo
;
}
}
curriculumsearch/src/main/java/com/roshka/modelo/ExperienciaReconocimiento.java
View file @
4e3dac4e
package
com
.
roshka
.
modelo
;
import
javax.persistence.*
;
@Entity
@Table
(
name
=
"experiencia_reconocimiento"
)
public
class
ExperienciaReconocimiento
{
@Id
@GeneratedValue
(
strategy
=
GenerationType
.
AUTO
)
private
long
id
;
@Column
(
name
=
"experiencia_id"
)
private
long
experienciaId
;
@Column
(
name
=
"tecnologia_id"
)
private
long
tecnologiaId
;
@Column
(
name
=
"nivel"
)
private
long
nivel
;
public
long
getId
()
{
return
id
;
}
public
void
setId
(
long
id
)
{
this
.
id
=
id
;
}
public
long
getExperienciaId
()
{
return
experienciaId
;
}
public
void
setExperienciaId
(
long
experienciaId
)
{
this
.
experienciaId
=
experienciaId
;
}
public
long
getTecnologiaId
()
{
return
tecnologiaId
;
}
public
void
setTecnologiaId
(
long
tecnologiaId
)
{
this
.
tecnologiaId
=
tecnologiaId
;
}
public
long
getNivel
()
{
return
nivel
;
}
public
void
setNivel
(
long
nivel
)
{
this
.
nivel
=
nivel
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment