Subversion Repositories SmartDukaan

Rev

Rev 35948 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35948 Rev 35969
Line 45... Line 45...
45
    private String status;
45
    private String status;
46
 
46
 
47
    @Column(name = "resolution_notes")
47
    @Column(name = "resolution_notes")
48
    private String resolutionNotes;
48
    private String resolutionNotes;
49
 
49
 
-
 
50
    @Column
-
 
51
    private boolean unread;
-
 
52
 
50
    @Column(name = "create_timestamp")
53
    @Column(name = "create_timestamp")
51
    private LocalDateTime createTimestamp;
54
    private LocalDateTime createTimestamp;
52
 
55
 
53
    @Column(name = "update_timestamp")
56
    @Column(name = "update_timestamp")
54
    private LocalDateTime updateTimestamp;
57
    private LocalDateTime updateTimestamp;
Line 139... Line 142...
139
 
142
 
140
    public void setResolutionNotes(String resolutionNotes) {
143
    public void setResolutionNotes(String resolutionNotes) {
141
        this.resolutionNotes = resolutionNotes;
144
        this.resolutionNotes = resolutionNotes;
142
    }
145
    }
143
 
146
 
-
 
147
    public boolean isUnread() {
-
 
148
        return unread;
-
 
149
    }
-
 
150
 
-
 
151
    public void setUnread(boolean unread) {
-
 
152
        this.unread = unread;
-
 
153
    }
-
 
154
 
144
    public LocalDateTime getCreateTimestamp() {
155
    public LocalDateTime getCreateTimestamp() {
145
        return createTimestamp;
156
        return createTimestamp;
146
    }
157
    }
147
 
158
 
148
    public void setCreateTimestamp(LocalDateTime createTimestamp) {
159
    public void setCreateTimestamp(LocalDateTime createTimestamp) {