Subversion Repositories SmartDukaan

Rev

Rev 36644 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36644 Rev 36805
Line 44... Line 44...
44
    private String stayLongitude;
44
    private String stayLongitude;
45
 
45
 
46
    @Column(name = "created_timestamp")
46
    @Column(name = "created_timestamp")
47
    private LocalDateTime createdTimestamp;
47
    private LocalDateTime createdTimestamp;
48
 
48
 
-
 
49
    @Column(name = "agenda_filled_timestamp")
-
 
50
    private LocalDateTime agendaFilledTimestamp;
-
 
51
 
49
    public int getId() {
52
    public int getId() {
50
        return id;
53
        return id;
51
    }
54
    }
52
 
55
 
53
    public void setId(int id) {
56
    public void setId(int id) {
Line 139... Line 142...
139
    }
142
    }
140
 
143
 
141
    public void setCreatedTimestamp(LocalDateTime createdTimestamp) {
144
    public void setCreatedTimestamp(LocalDateTime createdTimestamp) {
142
        this.createdTimestamp = createdTimestamp;
145
        this.createdTimestamp = createdTimestamp;
143
    }
146
    }
-
 
147
 
-
 
148
    public LocalDateTime getAgendaFilledTimestamp() {
-
 
149
        return agendaFilledTimestamp;
-
 
150
    }
-
 
151
 
-
 
152
    public void setAgendaFilledTimestamp(LocalDateTime agendaFilledTimestamp) {
-
 
153
        this.agendaFilledTimestamp = agendaFilledTimestamp;
-
 
154
    }
144
}
155
}