Correcciones en clases VisiJPA y VisitTO para que compile el proyecto.

This commit is contained in:
Marcos Garcia Nuñez
2019-12-08 23:30:20 +01:00
parent a369839770
commit bfe2aa066e
2 changed files with 22 additions and 21 deletions

View File

@@ -1,6 +1,8 @@
package TO;
import java.io.Serializable;
import java.sql.Time;
import java.util.Date;
import javax.xml.bind.annotation.XmlRootElement;
@@ -34,19 +36,19 @@ public class VisitTO implements Serializable {
}
public VisitTO(Integer id, Date date, Time time, String observation, String result) {
this.setId(id);
this date=date;
this time
1}
this.date=date;
//this.time
}
public Integer getId() {
return this.id;
}
public void setId(integer id) {
public void setId(Integer id) {
this.id=id;
}
public Date getDate() {
return this.Date;
return this.date;
}
public void setDate(Date date) {