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
64abcc2f
Commit
64abcc2f
authored
Jul 29, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se agregan las anotaciones de las propiedades en el DtoUzyTavActaPrueba y ModelUzyTavActaPrueba
parent
aa4b7e68
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
10 deletions
+22
-10
DtoUzyTavActaPrueba.java
...u/espe/movilidad/MovilidadWS/Dto/DtoUzyTavActaPrueba.java
+13
-2
ModelUzyTavActaPrueba.java
...pe/movilidad/MovilidadWS/Model/ModelUzyTavActaPrueba.java
+9
-8
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Dto/DtoUzyTavActaPrueba.java
View file @
64abcc2f
...
...
@@ -2,15 +2,26 @@ package ec.edu.espe.movilidad.MovilidadWS.Dto;
import
lombok.Data
;
import
java.util.Date
;
import
javax.validation.constraints.Pattern
;
import
javax.validation.constraints.Positive
;
import
javax.validation.constraints.Size
;
import
java.time.LocalDate
;
@Data
public
class
DtoUzyTavActaPrueba
{
@Positive
(
message
=
"El campo uzytavactaprueba_id debe ser un número positivo"
)
private
Long
uzytavactaprueba_id
;
@Positive
(
message
=
"El campo uzytusuario_id_aprueba debe ser un número positivo"
)
private
Long
uzytusuario_id_aprueba
;
private
Date
uzytavactaprueba_fecha_aprueba
;
private
LocalDate
uzytavactaprueba_fecha_aprueba
;
@Positive
(
message
=
"El campo uzytavactaprueba_secuencial_a debe ser un número positivo"
)
private
Long
uzytavactaprueba_secuencial_a
;
@Size
(
max
=
1
)
@Pattern
(
regexp
=
"[SN]"
,
message
=
"El campo uzytavactaprueba_cerrado solo puede ser Cerrado:S - No cerrado :N"
)
private
String
uzytavactaprueba_cerrado
;
@Size
(
max
=
100
)
private
String
uzytavactaprueba_doc_nom
;
@Size
(
max
=
250
)
private
String
uzytavactaprueba_doc_url
;
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Model/ModelUzyTavActaPrueba.java
View file @
64abcc2f
...
...
@@ -9,7 +9,8 @@ import lombok.Setter;
import
javax.persistence.Entity
;
import
javax.persistence.Table
;
import
javax.persistence.*
;
import
java.util.Date
;
import
javax.validation.constraints.Size
;
import
java.time.LocalDate
;
import
java.util.LinkedHashSet
;
import
java.util.Set
;
...
...
@@ -29,18 +30,18 @@ public class ModelUzyTavActaPrueba {
private
Long
uzytusuario_id_aprueba
;
@Column
(
name
=
"uzytavactaprueba_fecha_aprueba"
)
private
Date
uzytavactaprueba_fecha_aprueba
;
private
Local
Date
uzytavactaprueba_fecha_aprueba
;
@Column
(
name
=
"uzytavactaprueba_secuencial_a"
)
private
Long
uzytavactaprueba_secuencial_a
;
@Column
(
name
=
"uzytavactaprueba_cerrado"
)
@Size
(
max
=
1
)
@Column
(
name
=
"uzytavactaprueba_cerrado"
,
length
=
1
)
private
String
uzytavactaprueba_cerrado
;
@Column
(
name
=
"uzytavactaprueba_doc_nom"
)
@Size
(
max
=
100
)
@Column
(
name
=
"uzytavactaprueba_doc_nom"
,
length
=
100
)
private
String
uzytavactaprueba_doc_nom
;
@Column
(
name
=
"uzytavactaprueba_doc_url"
)
@Size
(
max
=
250
)
@Column
(
name
=
"uzytavactaprueba_doc_url"
,
length
=
250
)
private
String
uzytavactaprueba_doc_url
;
...
...
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