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
1fba0a8c
Commit
1fba0a8c
authored
Oct 28, 2021
by
Javier Ferreira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tabla postulantetecnologia actualizado
parent
f6f243ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
1 deletions
+48
-1
curriculumsearch/src/main/java/com/roshka/modelo/PostulanteTecnologia.java
+48
-1
No files found.
curriculumsearch/src/main/java/com/roshka/modelo/PostulanteTecnologia.java
View file @
1fba0a8c
package
com
.
roshka
.
modelo
;
import
javax.persistence.Column
;
import
javax.persistence.Entity
;
import
javax.persistence.GeneratedValue
;
import
javax.persistence.GenerationType
;
import
javax.persistence.Id
;
import
javax.persistence.Table
;
@Entity
@Table
(
name
=
"postulante_tecnologia"
)
public
class
PostulanteTecnologia
{
@Id
@GeneratedValue
(
strategy
=
GenerationType
.
AUTO
)
private
long
id
;
@Column
(
name
=
"nivel"
)
private
Long
nivel
;
@Column
(
name
=
"tecnologias"
)
private
long
tecnologias
;
@Column
(
name
=
"postulante"
)
private
long
postulante
;
public
long
getId
()
{
return
id
;
}
public
void
setId
(
long
id
)
{
this
.
id
=
id
;
}
public
Long
getNivel
()
{
return
nivel
;
}
public
void
setNivel
(
Long
nivel
)
{
this
.
nivel
=
nivel
;
}
public
long
getTecnologias
()
{
return
tecnologias
;
}
public
void
setTecnologias
(
long
tecnologias
)
{
this
.
tecnologias
=
tecnologias
;
}
public
long
getPostulante
()
{
return
postulante
;
}
public
void
setPostulante
(
long
postulante
)
{
this
.
postulante
=
postulante
;
}
}
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