Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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;
7
 
8
    public int getBrandId() {
9
        return brandId;
10
    }
11
 
12
    public void setBrandId(int brandId) {
13
        this.brandId = brandId;
14
    }
15
 
16
    public int getNocDocId() {
17
        return nocDocId;
18
    }
19
 
20
    public void setNocDocId(int nocDocId) {
21
        this.nocDocId = nocDocId;
22
    }
23
 
24
    public String getNocGt() {
25
        return nocGt;
26
    }
27
 
28
    public void setNocGt(String nocGt) {
29
        this.nocGt = nocGt;
30
    }
31
 
32
    @Override
33
    public String toString() {
34
        return "NocRequiredBrandRequest{" +
35
                "brandId=" + brandId +
36
                ", nocDocId=" + nocDocId +
37
                ", nocGt='" + nocGt + '\'' +
38
                '}';
39
    }
40
}