Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
33172 tejus.loha 1
package com.spice.profitmandi.common.model;
2
 
3
public class BulkOrderModel {
4
    int rowIndex;
5
    String name;
6
    String description;
7
    int fofoId;
8
    int itemId;
9
    int quantity;
10
 
11
    public BulkOrderModel() {
12
    }
13
 
14
    public BulkOrderModel(int rowIndex, String name, String discription, int fofoId, int itemId, int quantity) {
15
        this.rowIndex = rowIndex;
16
        this.name = name;
17
        this.description = discription;
18
        this.fofoId = fofoId;
19
        this.itemId = itemId;
20
        this.quantity = quantity;
21
    }
22
 
23
    public int getRowIndex() {
24
        return rowIndex;
25
    }
26
 
27
    public void setRowIndex(int rowIndex) {
28
        this.rowIndex = rowIndex;
29
    }
30
 
31
    public String getName() {
32
        return name;
33
    }
34
 
35
    public void setName(String name) {
36
        this.name = name;
37
    }
38
 
39
    public String getDescription() {
40
        return description;
41
    }
42
 
43
    public void setDescription(String description) {
44
        this.description = description;
45
    }
46
 
47
    public int getFofoId() {
48
        return fofoId;
49
    }
50
 
51
    public void setFofoId(int fofoId) {
52
        this.fofoId = fofoId;
53
    }
54
 
55
    public int getItemId() {
56
        return itemId;
57
    }
58
 
59
    public void setItemId(int itemId) {
60
        this.itemId = itemId;
61
    }
62
 
63
    public int getQuantity() {
64
        return quantity;
65
    }
66
 
67
    public void setQuantity(int quantity) {
68
        this.quantity = quantity;
69
    }
70
 
71
    @Override
72
    public String toString() {
73
        return "BulkOrder{" +
74
                "name='" + name + '\'' +
75
                ", discription='" + description + '\'' +
76
                ", fofoId=" + fofoId +
77
                ", itemId=" + itemId +
78
                ", quantity=" + quantity +
79
                '}';
80
    }
81
}