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
d765d901
Commit
d765d901
authored
Aug 26, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se agregan anotaciones de validación en DtoUzyTavInstituc y ModelUzyTavInstituc
parent
f9280174
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
14 deletions
+32
-14
DtoUzyTavInstituc.java
...edu/espe/movilidad/MovilidadWS/Dto/DtoUzyTavInstituc.java
+13
-0
ModelUzyTavInstituc.java
...espe/movilidad/MovilidadWS/Model/ModelUzyTavInstituc.java
+19
-14
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Dto/DtoUzyTavInstituc.java
View file @
d765d901
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Dto
;
import
lombok.Data
;
import
javax.validation.constraints.Pattern
;
import
javax.validation.constraints.Size
;
import
java.util.Date
;
@Data
public
class
DtoUzyTavInstituc
{
private
Long
uzytavinstituc_id
;
@Size
(
max
=
1000
)
private
String
uzytavinstituc_nombre
;
@Size
(
max
=
200
)
private
String
uzytavinstituc_calle
;
@Size
(
max
=
30
)
private
String
uzytavinstituc_telefono
;
@Size
(
max
=
200
)
private
String
uzytavinstituc_nomrepl
;
@Size
(
max
=
100
)
private
String
uzytavinstituc_cargorl
;
@Size
(
max
=
200
)
private
String
uzytavinstituc_apellirl
;
@Size
(
max
=
30
)
private
String
uzytavinstituc_telrepl
;
@Size
(
max
=
50
)
private
String
uzytavinstituc_mailrl1
;
private
Date
uzytavinstituc_fecha_crea
;
@Size
(
max
=
1
)
@Pattern
(
regexp
=
"[AI]"
,
message
=
"El campo uzytavinstituc_estado solo puede ser A=Activo; I= Inactivo"
)
private
String
uzytavinstituc_estado
;
private
String
uzytparroquia_id
;
private
DtoUzyTParroquia
uzytparroquia
;
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Model/ModelUzyTavInstituc.java
View file @
d765d901
...
...
@@ -5,6 +5,7 @@ import lombok.Getter;
import
lombok.Setter
;
import
javax.persistence.*
;
import
javax.validation.constraints.Size
;
import
java.util.Date
;
import
java.util.LinkedHashSet
;
import
java.util.Set
;
...
...
@@ -19,31 +20,35 @@ public class ModelUzyTavInstituc {
@GeneratedValue
(
strategy
=
GenerationType
.
SEQUENCE
,
generator
=
"uzytavinstituc_seq"
)
@Column
(
name
=
"uzytavinstituc_id"
)
private
Long
uzytavinstituc_id
;
@Column
(
name
=
"uzytavinstituc_nombre"
)
@Size
(
max
=
1000
)
@Column
(
name
=
"uzytavinstituc_nombre"
,
length
=
1000
)
private
String
uzytavinstituc_nombre
;
@Column
(
name
=
"uzytavinstituc_calle"
)
@Size
(
max
=
200
)
@Column
(
name
=
"uzytavinstituc_calle"
,
length
=
200
)
private
String
uzytavinstituc_calle
;
@Column
(
name
=
"uzytavinstituc_telefono"
)
@Size
(
max
=
30
)
@Column
(
name
=
"uzytavinstituc_telefono"
,
length
=
30
)
private
String
uzytavinstituc_telefono
;
@Column
(
name
=
"uzytavinstituc_nomrepl"
)
@Size
(
max
=
200
)
@Column
(
name
=
"uzytavinstituc_nomrepl"
,
length
=
200
)
private
String
uzytavinstituc_nomrepl
;
@Column
(
name
=
"uzytavinstituc_cargorl"
)
@Size
(
max
=
100
)
@Column
(
name
=
"uzytavinstituc_cargorl"
,
length
=
100
)
private
String
uzytavinstituc_cargorl
;
@Column
(
name
=
"uzytavinstituc_apellirl"
)
@Size
(
max
=
200
)
@Column
(
name
=
"uzytavinstituc_apellirl"
,
length
=
200
)
private
String
uzytavinstituc_apellirl
;
@Column
(
name
=
"uzytavinstituc_telrepl"
)
@Size
(
max
=
30
)
@Column
(
name
=
"uzytavinstituc_telrepl"
,
length
=
30
)
private
String
uzytavinstituc_telrepl
;
@Column
(
name
=
"uzytavinstituc_mailrl1"
)
@Size
(
max
=
50
)
@Column
(
name
=
"uzytavinstituc_mailrl1"
,
length
=
50
)
private
String
uzytavinstituc_mailrl1
;
@Column
(
name
=
"uzytavinstituc_fecha_crea"
)
private
Date
uzytavinstituc_fecha_crea
;
@Column
(
name
=
"uzytavinstituc_estado"
)
@Size
(
max
=
1
)
@Column
(
name
=
"uzytavinstituc_estado"
,
length
=
1
)
private
String
uzytavinstituc_estado
;
//RELACIÓN CON PARROQUIA-TABLA PADRE
...
...
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