Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21686 ashik.ali 1
package com.spice.profitmandi.common.model;
2
 
3
import java.util.Set;
4
 
5
public class PdfModel {
6
	private String title;
7
	private String auther;
8
	private CustomCustomer customer;
9
	private CustomRetailer retailer;
10
	private String invoiceNumber;
11
	private Set<CustomFofoOrderItem> orderItems;
12
	private float totalAmount;
13
	public String getTitle() {
14
		return title;
15
	}
16
	public void setTitle(String title) {
17
		this.title = title;
18
	}
19
	public String getAuther() {
20
		return auther;
21
	}
22
	public void setAuther(String auther) {
23
		this.auther = auther;
24
	}
25
	public CustomCustomer getCustomer() {
26
		return customer;
27
	}
28
	public void setCustomer(CustomCustomer customer) {
29
		this.customer = customer;
30
	}
31
	public CustomRetailer getRetailer() {
32
		return retailer;
33
	}
34
	public void setRetailer(CustomRetailer retailer) {
35
		this.retailer = retailer;
36
	}
37
	public String getInvoiceNumber() {
38
		return invoiceNumber;
39
	}
40
	public void setInvoiceNumber(String invoiceNumber) {
41
		this.invoiceNumber = invoiceNumber;
42
	}
43
	public Set<CustomFofoOrderItem> getOrderItems() {
44
		return orderItems;
45
	}
46
	public void setOrderItems(Set<CustomFofoOrderItem> orderItems) {
47
		this.orderItems = orderItems;
48
	}
49
	public float getTotalAmount() {
50
		return totalAmount;
51
	}
52
	public void setTotalAmount(float totalAmount) {
53
		this.totalAmount = totalAmount;
54
	}
55
}