Subversion Repositories SmartDukaan

Rev

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

Rev 28420 Rev 28425
Line 21... Line 21...
21
	private int fofoId;
21
	private int fofoId;
22
 
22
 
23
	@Column(name = "create_timestamp")
23
	@Column(name = "create_timestamp")
24
	private LocalDateTime createTimestamp;
24
	private LocalDateTime createTimestamp;
25
 
25
 
-
 
26
	@Column(name = "update_timestamp")
-
 
27
	private LocalDateTime updateTimestamp;
-
 
28
 
-
 
29
	public LocalDateTime getUpdateTimestamp() {
-
 
30
		return updateTimestamp;
-
 
31
	}
-
 
32
 
-
 
33
	public void setUpdateTimestamp(LocalDateTime updateTimestamp) {
-
 
34
		this.updateTimestamp = updateTimestamp;
-
 
35
	}
-
 
36
 
26
	public int getId() {
37
	public int getId() {
27
		return id;
38
		return id;
28
	}
39
	}
29
 
40
 
30
	public void setId(int id) {
41
	public void setId(int id) {
Line 47... Line 58...
47
		this.createTimestamp = createTimestamp;
58
		this.createTimestamp = createTimestamp;
48
	}
59
	}
49
 
60
 
50
	@Override
61
	@Override
51
	public String toString() {
62
	public String toString() {
52
		return "Mou [id=" + id + ", fofoId=" + fofoId + ", createTimestamp=" + createTimestamp + "]";
63
		return "Mou [id=" + id + ", fofoId=" + fofoId + ", createTimestamp=" + createTimestamp + ", updateTimestamp="
-
 
64
				+ updateTimestamp + "]";
53
	}
65
	}
54
 
66
 
55
}
67
}