Subversion Repositories SmartDukaan

Rev

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

Rev 21600 Rev 21604
Line 2... Line 2...
2
 
2
 
3
import in.shop2020.model.v1.catalog.ItemType;
3
import in.shop2020.model.v1.catalog.ItemType;
4
 
4
 
5
public class CustomItem {
5
public class CustomItem {
6
	private int itemId;
6
	private int itemId;
7
	private ItemType type;
7
	private String type;
8
	private boolean scanned;
8
	private boolean scanned;
9
	private String invoiceNumber;
9
	private String invoiceNumber;
10
	private CustomLineItem itemDetail;
10
	private CustomLineItem itemDetail;
11
	public int getItemId() {
11
	public int getItemId() {
12
		return itemId;
12
		return itemId;
13
	}
13
	}
14
	public void setItemId(int itemId) {
14
	public void setItemId(int itemId) {
15
		this.itemId = itemId;
15
		this.itemId = itemId;
16
	}
16
	}
17
	public ItemType getType() {
17
	public String getType() {
18
		return type;
18
		return type;
19
	}
19
	}
20
	public void setType(ItemType type) {
20
	public void setType(String type) {
21
		this.type = type;
21
		this.type = type;
22
	}
22
	}
23
	public boolean isScanned() {
23
	public boolean isScanned() {
24
		return scanned;
24
		return scanned;
25
	}
25
	}