Subversion Repositories SmartDukaan

Rev

Rev 33879 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
33879 tejus.loha 1
package com.spice.profitmandi.dao.service;
2
 
3
public class NocRequiredBrandRequest {
4
    private int brandId;
5
    private int nocDocId;
6
    private String nocGt;
33882 tejus.loha 7
    private double amount;
8
    private boolean active;
33879 tejus.loha 9
 
33882 tejus.loha 10
    public double getAmount() {
11
        return amount;
12
    }
13
 
14
    public void setAmount(double amount) {
15
        this.amount = amount;
16
    }
17
 
18
    public boolean isActive() {
19
        return active;
20
    }
21
 
22
    public void setActive(boolean active) {
23
        this.active = active;
24
    }
25
 
33879 tejus.loha 26
    public int getBrandId() {
27
        return brandId;
28
    }
29
 
30
    public void setBrandId(int brandId) {
31
        this.brandId = brandId;
32
    }
33
 
34
    public int getNocDocId() {
35
        return nocDocId;
36
    }
37
 
38
    public void setNocDocId(int nocDocId) {
39
        this.nocDocId = nocDocId;
40
    }
41
 
42
    public String getNocGt() {
43
        return nocGt;
44
    }
45
 
46
    public void setNocGt(String nocGt) {
47
        this.nocGt = nocGt;
48
    }
49
 
50
    @Override
51
    public String toString() {
52
        return "NocRequiredBrandRequest{" +
53
                "brandId=" + brandId +
54
                ", nocDocId=" + nocDocId +
55
                ", nocGt='" + nocGt + '\'' +
33882 tejus.loha 56
                ", amount=" + amount +
57
                ", actice=" + active +
33879 tejus.loha 58
                '}';
59
    }
60
}