Subversion Repositories SmartDukaan

Rev

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

Rev 37211 Rev 37244
Line 23... Line 23...
23
    private LocalDate startDate;
23
    private LocalDate startDate;
24
 
24
 
25
    @Column(name = "end_date")
25
    @Column(name = "end_date")
26
    private LocalDate endDate;
26
    private LocalDate endDate;
27
 
27
 
-
 
28
    @Column(name = "warranty_months")
-
 
29
    private int warrantyMonths;
-
 
30
 
-
 
31
    @Column(name = "item_condition")
-
 
32
    @Enumerated(EnumType.STRING)
-
 
33
    private HotDealCondition itemCondition;
-
 
34
 
-
 
35
    @Column(name = "activated")
-
 
36
    private boolean activated;
-
 
37
 
-
 
38
    @Column(name = "finance_mapping")
-
 
39
    private boolean financeMapping;
-
 
40
 
-
 
41
    @Column(name = "affordability")
-
 
42
    private boolean affordability;
-
 
43
 
28
    @Column(name = "created_on")
44
    @Column(name = "created_on")
29
    private LocalDateTime createdOn;
45
    private LocalDateTime createdOn;
30
 
46
 
31
    @Column(name = "created_by")
47
    @Column(name = "created_by")
32
    private String createdBy;
48
    private String createdBy;
Line 128... Line 144...
128
    }
144
    }
129
 
145
 
130
    public void setStatus(String status) {
146
    public void setStatus(String status) {
131
        this.status = status;
147
        this.status = status;
132
    }
148
    }
-
 
149
 
-
 
150
    public int getWarrantyMonths() {
-
 
151
        return warrantyMonths;
-
 
152
    }
-
 
153
 
-
 
154
    public void setWarrantyMonths(int warrantyMonths) {
-
 
155
        this.warrantyMonths = warrantyMonths;
-
 
156
    }
-
 
157
 
-
 
158
    public HotDealCondition getItemCondition() {
-
 
159
        return itemCondition;
-
 
160
    }
-
 
161
 
-
 
162
    public void setItemCondition(HotDealCondition itemCondition) {
-
 
163
        this.itemCondition = itemCondition;
-
 
164
    }
-
 
165
 
-
 
166
    public boolean isActivated() {
-
 
167
        return activated;
-
 
168
    }
-
 
169
 
-
 
170
    public void setActivated(boolean activated) {
-
 
171
        this.activated = activated;
-
 
172
    }
-
 
173
 
-
 
174
    public boolean isFinanceMapping() {
-
 
175
        return financeMapping;
-
 
176
    }
-
 
177
 
-
 
178
    public void setFinanceMapping(boolean financeMapping) {
-
 
179
        this.financeMapping = financeMapping;
-
 
180
    }
-
 
181
 
-
 
182
    public boolean isAffordability() {
-
 
183
        return affordability;
-
 
184
    }
-
 
185
 
-
 
186
    public void setAffordability(boolean affordability) {
-
 
187
        this.affordability = affordability;
-
 
188
    }
133
}
189
}