Se agregan anotaciones de validación en DtoUzyTavClasPre y ModelUzyTavClasPre

parent 3e9c3145
...@@ -2,14 +2,20 @@ package ec.edu.espe.movilidad.MovilidadWS.Dto; ...@@ -2,14 +2,20 @@ package ec.edu.espe.movilidad.MovilidadWS.Dto;
import lombok.Data; import lombok.Data;
import javax.validation.constraints.Positive;
import javax.validation.constraints.Size;
@Data @Data
public class DtoUzyTavClasPre { public class DtoUzyTavClasPre {
@Positive(message = "El campo uzytavclaspre_id debe ser un número positivo")
private Long uzytavclaspre_id; private Long uzytavclaspre_id;
private DtoUzyTClasificadorPresup uzytclasificador_presup; private DtoUzyTClasificadorPresup uzytclasificador_presup;
@Size(max = 1)
private String uzytavclaspre_estado; private String uzytavclaspre_estado;
@Positive(message = "El campo uzytclasificador_presup_id debe ser un número positivo")
private Long uzytclasificador_presup_id; private Long uzytclasificador_presup_id;
@Size(max = 1)
private String uzytavclaspre_tipo; private String uzytavclaspre_tipo;
} }
...@@ -5,6 +5,7 @@ import lombok.Getter; ...@@ -5,6 +5,7 @@ import lombok.Getter;
import lombok.Setter; import lombok.Setter;
import javax.persistence.*; import javax.persistence.*;
import javax.validation.constraints.Size;
import java.util.LinkedHashSet; import java.util.LinkedHashSet;
import java.util.Set; import java.util.Set;
...@@ -19,10 +20,10 @@ public class ModelUzyTavClasPre { ...@@ -19,10 +20,10 @@ public class ModelUzyTavClasPre {
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "uzytavclaspre_seq") @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "uzytavclaspre_seq")
@Column(name = "uzytavclaspre_id") @Column(name = "uzytavclaspre_id")
private Long uzytavclaspre_id; private Long uzytavclaspre_id;
@Size(max = 1)
@Column(name = "uzytavclaspre_estado", length = 1) @Column(name = "uzytavclaspre_estado", length = 1)
private String uzytavclaspre_estado; private String uzytavclaspre_estado;
@Size(max = 1)
@Column(name = "uzytavclaspre_tipo", length = 1) @Column(name = "uzytavclaspre_tipo", length = 1)
private String uzytavclaspre_tipo; private String uzytavclaspre_tipo;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment