Subversion Repositories SmartDukaan

Rev

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

Rev 24917 Rev 26105
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.transaction;
1
package com.spice.profitmandi.dao.entity.transaction;
2
 
2
 
-
 
3
import java.time.LocalDateTime;
-
 
4
 
3
import javax.persistence.Column;
5
import javax.persistence.Column;
4
import javax.persistence.Entity;
6
import javax.persistence.Entity;
5
import javax.persistence.EnumType;
7
import javax.persistence.EnumType;
6
import javax.persistence.Enumerated;
8
import javax.persistence.Enumerated;
7
import javax.persistence.GeneratedValue;
9
import javax.persistence.GeneratedValue;
Line 33... Line 35...
33
	private int itemId;
35
	private int itemId;
34
 
36
 
35
	@Column(name = "fofoId")
37
	@Column(name = "fofoId")
36
	private int fofoId;
38
	private int fofoId;
37
 
39
 
-
 
40
	@Column(name = "update_timestamp")
-
 
41
	private LocalDateTime updateTimestamp;
-
 
42
 
-
 
43
	public LocalDateTime getUpdateTimestamp() {
-
 
44
		return updateTimestamp;
-
 
45
	}
-
 
46
 
-
 
47
	public void setUpdateTimestamp(LocalDateTime updateTimestamp) {
-
 
48
		this.updateTimestamp = updateTimestamp;
-
 
49
	}
-
 
50
 
38
	public int getId() {
51
	public int getId() {
39
		return id;
52
		return id;
40
	}
53
	}
41
 
54
 
42
	public void setId(int id) {
55
	public void setId(int id) {
Line 84... Line 97...
84
	}
97
	}
85
 
98
 
86
	@Override
99
	@Override
87
	public String toString() {
100
	public String toString() {
88
		return "NotifyOrder [id=" + id + ", orderId=" + orderId + ", notifyId=" + notifyId + ", status=" + status
101
		return "NotifyOrder [id=" + id + ", orderId=" + orderId + ", notifyId=" + notifyId + ", status=" + status
89
				+ ", itemId=" + itemId + ", fofoId=" + fofoId + "]";
102
				+ ", itemId=" + itemId + ", fofoId=" + fofoId + ", updateTimestamp=" + updateTimestamp + "]";
90
	}
103
	}
91
 
104
 
92
 
-
 
93
}
105
}
94
106