Se modifica el campo uzytavanexospr_fech_subida de ModelUzyTavAnexoSPR y…

Se modifica el campo uzytavanexospr_fech_subida de ModelUzyTavAnexoSPR y DtoUzyTavAnexoSPR a LocalDateTime
parent 6a331596
......@@ -5,7 +5,7 @@ import org.springframework.web.multipart.MultipartFile;
import javax.validation.constraints.Positive;
import javax.validation.constraints.Size;
import java.time.LocalDate;
import java.time.LocalDateTime;
@Data
public class DtoUzyTavAnexoSPR {
......@@ -17,7 +17,7 @@ public class DtoUzyTavAnexoSPR {
private String uzytavanexospr_nombre;
@Size(max = 250)
private String uzytavanexospr_url;
private LocalDate uzytavanexospr_fech_subida;
private LocalDateTime uzytavanexospr_fech_subida;
@Positive(message = "El campo uzytusuario_id debe ser un número positivo")
private Long uzytusuario_id;
private Long uzytavanexospr_tipo;
......
......@@ -6,7 +6,7 @@ import lombok.Setter;
import javax.persistence.*;
import javax.validation.constraints.Size;
import java.time.LocalDate;
import java.time.LocalDateTime;
@Getter
......@@ -27,7 +27,7 @@ public class ModelUzyTavAnexoSPR {
private String uzytavanexospr_url;
@Column(name = "uzytavanexospr_fech_subida")
private LocalDate uzytavanexospr_fech_subida;
private LocalDateTime uzytavanexospr_fech_subida;
@Column(name = "uzytavanexospr_tipo")
private Integer uzytavanexospr_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