Subversion Repositories SmartDukaan

Rev

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

Rev 26023 Rev 26031
Line 38... Line 38...
38
	private Boolean cancellation;
38
	private Boolean cancellation;
39
 
39
 
40
	@Column(name = "created_timestamp")
40
	@Column(name = "created_timestamp")
41
	private LocalDateTime createdTimestamp;
41
	private LocalDateTime createdTimestamp;
42
 
42
 
-
 
43
	@Column(name = "updated_timestamp")
-
 
44
	private LocalDateTime updatedTimestamp;
-
 
45
 
43
	public int getId() {
46
	public int getId() {
44
		return id;
47
		return id;
45
	}
48
	}
46
 
49
 
-
 
50
	public LocalDateTime getUpdatedTimestamp() {
-
 
51
		return updatedTimestamp;
-
 
52
	}
-
 
53
 
-
 
54
	public void setUpdatedTimestamp(LocalDateTime updatedTimestamp) {
-
 
55
		this.updatedTimestamp = updatedTimestamp;
-
 
56
	}
-
 
57
 
47
	public void setId(int id) {
58
	public void setId(int id) {
48
		this.id = id;
59
		this.id = id;
49
	}
60
	}
50
 
61
 
51
	public int getItemId() {
62
	public int getItemId() {
Line 81... Line 92...
81
	}
92
	}
82
 
93
 
83
	@Override
94
	@Override
84
	public String toString() {
95
	public String toString() {
85
		return "NotifyCancel [id=" + id + ", itemId=" + itemId + ", orderId=" + orderId + ", fofoId=" + fofoId
96
		return "NotifyCancel [id=" + id + ", itemId=" + itemId + ", orderId=" + orderId + ", fofoId=" + fofoId
86
				+ ", cancellation=" + cancellation + ", createdTimestamp=" + createdTimestamp + "]";
97
				+ ", cancellation=" + cancellation + ", createdTimestamp=" + createdTimestamp + ", updatedTimestamp="
-
 
98
				+ updatedTimestamp + "]";
87
	}
99
	}
88
 
100
 
89
}
101
}