Se agregan anotaciones de validación en DtoUzyTavClasPre y ModelUzyTavClasPre

parent 3e9c3145
......@@ -2,14 +2,20 @@ package ec.edu.espe.movilidad.MovilidadWS.Dto;
import lombok.Data;
import javax.validation.constraints.Positive;
import javax.validation.constraints.Size;
@Data
public class DtoUzyTavClasPre {
@Positive(message = "El campo uzytavclaspre_id debe ser un número positivo")
private Long uzytavclaspre_id;
private DtoUzyTClasificadorPresup uzytclasificador_presup;
@Size(max = 1)
private String uzytavclaspre_estado;
@Positive(message = "El campo uzytclasificador_presup_id debe ser un número positivo")
private Long uzytclasificador_presup_id;
@Size(max = 1)
private String uzytavclaspre_tipo;
}
......@@ -5,6 +5,7 @@ import lombok.Getter;
import lombok.Setter;
import javax.persistence.*;
import javax.validation.constraints.Size;
import java.util.LinkedHashSet;
import java.util.Set;
......@@ -19,10 +20,10 @@ public class ModelUzyTavClasPre {
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "uzytavclaspre_seq")
@Column(name = "uzytavclaspre_id")
private Long uzytavclaspre_id;
@Size(max = 1)
@Column(name = "uzytavclaspre_estado", length = 1)
private String uzytavclaspre_estado;
@Size(max = 1)
@Column(name = "uzytavclaspre_tipo", length = 1)
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