Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33536 tejus.loha 1
package com.spice.profitmandi.dao.model;
2
 
3
public class ContentDocsModel {
4
    private String title;
5
    private int catalog_id;
6
 
7
    public String getTitle() {
8
        return title;
9
    }
10
 
11
    public void setTitle(String title) {
12
        this.title = title;
13
    }
14
 
15
    public int getCatalog_id() {
16
        return catalog_id;
17
    }
18
 
19
    public void setCatalog_id(int catalog_id) {
20
        this.catalog_id = catalog_id;
21
    }
22
 
23
    @Override
24
    public String toString() {
25
        return "ContentDocsModel{" +
26
                "title='" + title + '\'' +
27
                ", catalog_id=" + catalog_id +
28
                '}';
29
    }
30
}