Correcciones en clases VisiJPA y VisitTO para que compile el proyecto.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user