Subversion Repositories SmartDukaan

Rev

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

Rev 23202 Rev 23369
Line 32... Line 32...
32
	private int customerId;
32
	private int customerId;
33
	
33
	
34
	@Column(name = "customer_address_id")
34
	@Column(name = "customer_address_id")
35
	private int customerAddressId;
35
	private int customerAddressId;
36
	
36
	
-
 
37
	@Column(name = "customer_gst_number")
-
 
38
	private String customerGstNumber;
-
 
39
	
37
	@Column(name = "total_amount")
40
	@Column(name = "total_amount")
38
	private float totalAmount;
41
	private float totalAmount;
39
	
42
	
40
	@Column(name = "invoice_number", length = 50)
43
	@Column(name = "invoice_number", length = 50)
41
	private String invoiceNumber;
44
	private String invoiceNumber;
Line 69... Line 72...
69
		return customerAddressId;
72
		return customerAddressId;
70
	}
73
	}
71
	public void setCustomerAddressId(int customerAddressId) {
74
	public void setCustomerAddressId(int customerAddressId) {
72
		this.customerAddressId = customerAddressId;
75
		this.customerAddressId = customerAddressId;
73
	}
76
	}
-
 
77
	public String getCustomerGstNumber() {
-
 
78
		return customerGstNumber;
-
 
79
	}
-
 
80
	public void setCustomerGstNumber(String customerGstNumber) {
-
 
81
		this.customerGstNumber = customerGstNumber;
-
 
82
	}
74
	public float getTotalAmount() {
83
	public float getTotalAmount() {
75
		return totalAmount;
84
		return totalAmount;
76
	}
85
	}
77
	public void setTotalAmount(float totalAmount) {
86
	public void setTotalAmount(float totalAmount) {
78
		this.totalAmount = totalAmount;
87
		this.totalAmount = totalAmount;
Line 124... Line 133...
124
	}
133
	}
125
	
134
	
126
	@Override
135
	@Override
127
	public String toString() {
136
	public String toString() {
128
		return "FofoOrder [id=" + id + ", fofoId=" + fofoId + ", customerId=" + customerId + ", customerAddressId="
137
		return "FofoOrder [id=" + id + ", fofoId=" + fofoId + ", customerId=" + customerId + ", customerAddressId="
129
				+ customerAddressId + ", totalAmount=" + totalAmount + ", invoiceNumber=" + invoiceNumber
138
				+ customerAddressId + ", customerGstNumber=" + customerGstNumber + ", totalAmount=" + totalAmount
130
				+ ", cashback=" + cashback + ", createTimestamp=" + createTimestamp + "]";
139
				+ ", invoiceNumber=" + invoiceNumber + ", cashback=" + cashback + ", createTimestamp=" + createTimestamp
-
 
140
				+ "]";
131
	}
141
	}
132
	
142
	
133
}
143
}