Se agregan las anotaciones de las propiedades en el DtoUzyTavCaprog y en el ModelUzyTavCaprog

parent 6c3eb963
package ec.edu.espe.movilidad.MovilidadWS.Dto;
import lombok.Data;
import javax.validation.constraints.Positive;
import javax.validation.constraints.Size;
@Data
public class DtoUzyTavCaprog {
private Long UZYTAVCAPROG_ID;
private Long UZYTAVPROGRAMA_V_ID;
private String STVMAJR_CODE;
@Positive(message = "El campo uzytavcaprog_id debe ser un número positivo")
private Long uzytavcaprog_id;
@Positive(message = "El campo uzytavprograma_v_id debe ser un número positivo")
private Long uzytavprograma_v_id;
@Size(max = 4)
private String stvmajr_code;
}
......@@ -8,18 +8,18 @@ import javax.validation.constraints.Size;
@Getter
@Setter
@Entity
@Table(name = "UZYTAVCAPROG", schema = "UTIC1")
@Table(name = "uzytavcaprog", schema = "UTIC1")
public class ModelUzyTavCaprog {
@Id
@Column(name = "UZYTAVCAPROG_ID")
private Long UZYTAVCAPROG_ID;
@Column(name = "uzytavcaprog_id")
private Long uzytavcaprog_id;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "UZYTAVPROGRAMA_V_ID")
@JoinColumn(name = "uzytavprograma_v_id")
private ModelUzyTavPrograma_V uzytavprograma_v;
@Size(max = 4)
@Column(name = "STVMAJR_CODE", length = 4)
private String STVMAJR_CODE;
@Column(name = "stvmajr_code", length = 4)
private String stvmajr_code;
}
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