Se agregan anotaciones de validación en DtoUzyTavConfObj

parent 9fe3ac71
package ec.edu.espe.movilidad.MovilidadWS.Dto;
import lombok.Data;
import javax.validation.constraints.Pattern;
import javax.validation.constraints.Positive;
import javax.validation.constraints.Size;
import java.util.Date;
@Data
public class DtoUzyTavConfObj {
@Positive(message = "El campo uzytavconfobj_id debe ser un número positivo")
private Long uzytavconfobj_id;
@Size(max = 100)
private String uzytavconfobj_descripcion;
private Date uzytavconfobj_fecha;
@Size(max = 1)
@Pattern(regexp = "[AI]", message = "El campo uzytavconfobj_estado solo puede ser A=Activa; I= Inactiva")
private String uzytavconfobj_estado;
@Positive(message = "El campo uzytavconftipo_id debe ser un número positivo")
private Long uzytavconftipo_id;
}
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