Subversion Repositories SmartDukaan

Rev

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

Rev 23369 Rev 24264
Line 48... Line 48...
48
	
48
	
49
	@Convert(converter = LocalDateTimeAttributeConverter.class)
49
	@Convert(converter = LocalDateTimeAttributeConverter.class)
50
	@Column(name = "create_timestamp")
50
	@Column(name = "create_timestamp")
51
	private LocalDateTime createTimestamp = LocalDateTime.now();	
51
	private LocalDateTime createTimestamp = LocalDateTime.now();	
52
	
52
	
-
 
53
	@Convert(converter = LocalDateTimeAttributeConverter.class)
-
 
54
	@Column(name = "cancelled_timestamp")
-
 
55
	private LocalDateTime cancelledTimestamp;	
-
 
56
	
-
 
57
	public LocalDateTime getCancelledTimestamp() {
-
 
58
		return cancelledTimestamp;
-
 
59
	}
-
 
60
	public void setCancelledTimestamp(LocalDateTime cancelledTimestamp) {
-
 
61
		this.cancelledTimestamp = cancelledTimestamp;
-
 
62
	}
53
	public int getId() {
63
	public int getId() {
54
		return id;
64
		return id;
55
	}
65
	}
56
	public void setId(int id) {
66
	public void setId(int id) {
57
		this.id = id;
67
		this.id = id;
Line 135... Line 145...
135
	@Override
145
	@Override
136
	public String toString() {
146
	public String toString() {
137
		return "FofoOrder [id=" + id + ", fofoId=" + fofoId + ", customerId=" + customerId + ", customerAddressId="
147
		return "FofoOrder [id=" + id + ", fofoId=" + fofoId + ", customerId=" + customerId + ", customerAddressId="
138
				+ customerAddressId + ", customerGstNumber=" + customerGstNumber + ", totalAmount=" + totalAmount
148
				+ customerAddressId + ", customerGstNumber=" + customerGstNumber + ", totalAmount=" + totalAmount
139
				+ ", invoiceNumber=" + invoiceNumber + ", cashback=" + cashback + ", createTimestamp=" + createTimestamp
149
				+ ", invoiceNumber=" + invoiceNumber + ", cashback=" + cashback + ", createTimestamp=" + createTimestamp
140
				+ "]";
150
				+ ", cancelledTimestamp=" + cancelledTimestamp + "]";
141
	}
151
	}
142
	
152
	
143
}
153
}