Subversion Repositories SmartDukaan

Rev

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

Rev 24085 Rev 24087
Line 37... Line 37...
37
	private String customerMobileNumber;
37
	private String customerMobileNumber;
38
	
38
	
39
	@Column(name = "customer_email_id")
39
	@Column(name = "customer_email_id")
40
	private String customerEmailId;
40
	private String customerEmailId;
41
	
41
	
42
	@Column(name = "item_id")
-
 
43
	private int itemId;
-
 
44
	
-
 
45
	@Column(name = "catalog_id")
42
	@Column(name = "catalog_id")
46
	private int catalogId;
43
	private int catalogId;
47
	
44
	
48
	@Column(name = "quantity")
45
	@Column(name = "quantity")
49
	private int quantity;
46
	private int quantity;
Line 126... Line 123...
126
 
123
 
127
	public void setCustomerEmailId(String customerEmailId) {
124
	public void setCustomerEmailId(String customerEmailId) {
128
		this.customerEmailId = customerEmailId;
125
		this.customerEmailId = customerEmailId;
129
	}
126
	}
130
 
127
 
131
	public int getItemId() {
-
 
132
		return itemId;
-
 
133
	}
-
 
134
 
-
 
135
	public void setItemId(int itemId) {
-
 
136
		this.itemId = itemId;
-
 
137
	}
-
 
138
 
-
 
139
	public int getQuantity() {
128
	public int getQuantity() {
140
		return quantity;
129
		return quantity;
141
	}
130
	}
142
 
131
 
143
	public void setQuantity(int quantity) {
132
	public void setQuantity(int quantity) {
Line 220... Line 209...
220
 
209
 
221
	@Override
210
	@Override
222
	public String toString() {
211
	public String toString() {
223
		return "PrebookingOrder [id=" + id + ", fofoId=" + fofoId + ", customerName=" + customerName
212
		return "PrebookingOrder [id=" + id + ", fofoId=" + fofoId + ", customerName=" + customerName
224
				+ ", customerMobileNumber=" + customerMobileNumber + ", customerEmailId=" + customerEmailId
213
				+ ", customerMobileNumber=" + customerMobileNumber + ", customerEmailId=" + customerEmailId
225
				+ ", itemId=" + itemId + ", catalogId=" + catalogId + ", quantity=" + quantity + ", availableQuantity="
214
				+ ", catalogId=" + catalogId + ", quantity=" + quantity + ", availableQuantity=" + availableQuantity
226
				+ availableQuantity + ", completeTimestamp=" + completeTimestamp + ", createTimestamp="
215
				+ ", completeTimestamp=" + completeTimestamp + ", createTimestamp=" + createTimestamp
227
				+ createTimestamp + ", notifyTimeStamp=" + notifyTimeStamp + ", description=" + description
216
				+ ", notifyTimeStamp=" + notifyTimeStamp + ", description=" + description + ", advanceAmount="
228
				+ ", advanceAmount=" + advanceAmount + ", tentativeAmount=" + tentativeAmount + "]";
217
				+ advanceAmount + ", tentativeAmount=" + tentativeAmount + "]";
229
	}
218
	}
230
	
219
	
231
}
220
}