Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
32145 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class ItemWisePurchaseModel {
4
 
5
    private int itemId;
6
    private int qty;
7
    private float transferPrice;
8
    private float totalValue;
9
 
10
    public int getItemId() {
11
        return itemId;
12
    }
13
 
14
    public void setItemId(int itemId) {
15
        this.itemId = itemId;
16
    }
17
 
18
    public int getQty() {
19
        return qty;
20
    }
21
 
22
    public void setQty(int qty) {
23
        this.qty = qty;
24
    }
25
 
26
    public float getTransferPrice() {
27
        return transferPrice;
28
    }
29
 
30
    public void setTransferPrice(float transferPrice) {
31
        this.transferPrice = transferPrice;
32
    }
33
 
34
    public float getTotalValue() {
35
        return totalValue;
36
    }
37
 
38
    public void setTotalValue(float totalValue) {
39
        this.totalValue = totalValue;
40
    }
41
 
42
    @Override
43
    public String toString() {
44
        return "ItemWisePurchaseModel [itemId=" + itemId + ", qty=" + qty + ", transferPrice=" + transferPrice + ", totalValue=" + totalValue + "]";
45
    }
46
 
47
 
48
}