Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.service;

public class NocRequiredBrandRequest {
    private int brandId;
    private int nocDocId;
    private String nocGt;

    public int getBrandId() {
        return brandId;
    }

    public void setBrandId(int brandId) {
        this.brandId = brandId;
    }

    public int getNocDocId() {
        return nocDocId;
    }

    public void setNocDocId(int nocDocId) {
        this.nocDocId = nocDocId;
    }

    public String getNocGt() {
        return nocGt;
    }

    public void setNocGt(String nocGt) {
        this.nocGt = nocGt;
    }

    @Override
    public String toString() {
        return "NocRequiredBrandRequest{" +
                "brandId=" + brandId +
                ", nocDocId=" + nocDocId +
                ", nocGt='" + nocGt + '\'' +
                '}';
    }
}