Subversion Repositories SmartDukaan

Rev

Rev 33658 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33658 Rev 33879
Line 11... Line 11...
11
    @Id
11
    @Id
12
    @Column(name = "id")
12
    @Column(name = "id")
13
    private int id;
13
    private int id;
14
    @Column(name = "brand")
14
    @Column(name = "brand")
15
    private String brand;
15
    private String brand;
-
 
16
    @Column(name = "noc_required")
-
 
17
    private boolean nocRequired;
-
 
18
    @Column(name = "active")
-
 
19
    private boolean active;
-
 
20
 
-
 
21
    public boolean isNocRequired() {
-
 
22
        return nocRequired;
-
 
23
    }
-
 
24
 
-
 
25
    public void setNocRequired(boolean nocRequired) {
-
 
26
        this.nocRequired = nocRequired;
-
 
27
    }
-
 
28
 
-
 
29
    public boolean isActive() {
-
 
30
        return active;
-
 
31
    }
-
 
32
 
-
 
33
    public void setActive(boolean active) {
-
 
34
        this.active = active;
-
 
35
    }
16
 
36
 
17
    public BrandCommit() {
37
    public BrandCommit() {
18
    }
38
    }
19
 
39
 
20
    public BrandCommit(int id, String brand) {
40
    public BrandCommit(int id, String brand) {