Subversion Repositories SmartDukaan

Rev

Rev 32795 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32795 Rev 35648
Line 26... Line 26...
26
    private LocalDateTime createdAt;
26
    private LocalDateTime createdAt;
27
 
27
 
28
    @Column
28
    @Column
29
    private boolean active;
29
    private boolean active;
30
 
30
 
-
 
31
    @Column
-
 
32
    private String brandName;
-
 
33
 
-
 
34
    @Column
-
 
35
    private String contactType;
-
 
36
 
31
    public int getId() {
37
    public int getId() {
32
        return id;
38
        return id;
33
    }
39
    }
34
 
40
 
35
    public void setId(int id) {
41
    public void setId(int id) {
Line 73... Line 79...
73
    }
79
    }
74
 
80
 
75
    public void setActive(boolean active) {
81
    public void setActive(boolean active) {
76
        this.active = active;
82
        this.active = active;
77
    }
83
    }
-
 
84
 
-
 
85
    public String getBrandName() {
-
 
86
        return brandName;
-
 
87
    }
-
 
88
 
-
 
89
    public void setBrandName(String brandName) {
-
 
90
        this.brandName = brandName;
-
 
91
    }
-
 
92
 
-
 
93
    public String getContactType() {
-
 
94
        return contactType;
-
 
95
    }
-
 
96
 
-
 
97
    public void setContactType(String contactType) {
-
 
98
        this.contactType = contactType;
-
 
99
    }
78
}
100
}