Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
BackEnd-V2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joel Andres Molina Velez
BackEnd-V2
Commits
25a0de59
Commit
25a0de59
authored
Jul 17, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se realiza una corrección en el el modelo de ModelUzyTPerfil
parent
95b179fc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
7 deletions
+4
-7
DtoUzyTPerfil.java
.../ec/edu/espe/movilidad/MovilidadWS/Dto/DtoUzyTPerfil.java
+1
-4
ModelUzyTPerfil.java
...edu/espe/movilidad/MovilidadWS/Model/ModelUzyTPerfil.java
+2
-2
ServiceUzyTPerfil.java
...dad/MovilidadWS/Service/UzyTPerfil/ServiceUzyTPerfil.java
+1
-1
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Dto/DtoUzyTPerfil.java
View file @
25a0de59
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Dto
;
import
lombok.Data
;
import
org.springframework.web.multipart.MultipartFile
;
import
java.util.Date
;
@Data
public
class
DtoUzyTPerfil
{
private
l
ong
uzytperfil_id
;
private
L
ong
uzytperfil_id
;
private
String
uzytperfil_nombre
;
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Model/ModelUzyTPerfil.java
View file @
25a0de59
...
...
@@ -17,11 +17,11 @@ public class ModelUzyTPerfil {
@GeneratedValue
(
strategy
=
GenerationType
.
SEQUENCE
,
generator
=
"uzytperfil_seq"
)
@SequenceGenerator
(
name
=
"uzytperfil_seq"
,
sequenceName
=
"SEQ_UZYTPERFIL"
,
allocationSize
=
1
)
@Column
(
name
=
"UZYTPERFIL_ID"
,
nullable
=
false
)
private
Long
id
;
private
Long
uzytperfil_
id
;
@Size
(
max
=
50
)
@Column
(
name
=
"UZYTPERFIL_NOMBRE"
,
length
=
50
)
private
String
uzytperfil
N
ombre
;
private
String
uzytperfil
_n
ombre
;
@OneToMany
(
mappedBy
=
"uzytperfil"
)
private
Set
<
ModelUzyTPerfilMenu
>
uzytperfilmenus
=
new
LinkedHashSet
<>();
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTPerfil/ServiceUzyTPerfil.java
View file @
25a0de59
...
...
@@ -46,7 +46,7 @@ public class ServiceUzyTPerfil implements IServiceUzyTPerfil {
try
{
ModelUzyTPerfil
entity
=
daoUzyTPerfil
.
findById
(
id
)
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
entity
.
setUzytperfil
N
ombre
(
dtoUzyTPerfil
.
getUzytperfil_nombre
());
entity
.
setUzytperfil
_n
ombre
(
dtoUzyTPerfil
.
getUzytperfil_nombre
());
ModelUzyTPerfil
updatedEntity
=
daoUzyTPerfil
.
save
(
entity
);
return
mapper
.
entityToDto
(
updatedEntity
);
}
catch
(
Exception
e
)
{
...
...
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