Subversion Repositories SmartDukaan

Rev

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

Rev 35912 Rev 36557
Line 81... Line 81...
81
    private BigDecimal penaltyRate;
81
    private BigDecimal penaltyRate;
82
 
82
 
83
    @Column(name = "limit_block")
83
    @Column(name = "limit_block")
84
    private boolean limitBlock;
84
    private boolean limitBlock;
85
 
85
 
-
 
86
    @Column(name = "description")
-
 
87
    private String description;
-
 
88
 
-
 
89
    @Column(name = "is_flagship")
-
 
90
    private boolean flagship;
-
 
91
 
-
 
92
    @Column(name = "flagship_deadline")
-
 
93
    private LocalDateTime flagshipDeadline;
-
 
94
 
86
    @Transient
95
    @Transient
87
    private boolean loanStatus;
96
    private boolean loanStatus;
88
 
97
 
89
    @Transient
98
    @Transient
90
    private BigDecimal totalPending;
99
    private BigDecimal totalPending;
Line 234... Line 243...
234
 
243
 
235
    public void setInvoiceNumber(String invoiceNumber) {
244
    public void setInvoiceNumber(String invoiceNumber) {
236
        this.invoiceNumber = invoiceNumber;
245
        this.invoiceNumber = invoiceNumber;
237
    }
246
    }
238
 
247
 
-
 
248
    public String getDescription() {
-
 
249
        return description;
-
 
250
    }
-
 
251
 
-
 
252
    public void setDescription(String description) {
-
 
253
        this.description = description;
-
 
254
    }
-
 
255
 
-
 
256
    public boolean isFlagship() {
-
 
257
        return flagship;
-
 
258
    }
-
 
259
 
-
 
260
    public void setFlagship(boolean flagship) {
-
 
261
        this.flagship = flagship;
-
 
262
    }
-
 
263
 
-
 
264
    public LocalDateTime getFlagshipDeadline() {
-
 
265
        return flagshipDeadline;
-
 
266
    }
-
 
267
 
-
 
268
    public void setFlagshipDeadline(LocalDateTime flagshipDeadline) {
-
 
269
        this.flagshipDeadline = flagshipDeadline;
-
 
270
    }
-
 
271
 
239
    @Override
272
    @Override
240
    public String toString() {
273
    public String toString() {
241
        return "Loan{" +
274
        return "Loan{" +
242
                "id=" + id +
275
                "id=" + id +
243
                ", fofoId=" + fofoId +
276
                ", fofoId=" + fofoId +
Line 251... Line 284...
251
                ", interestPaid=" + interestPaid +
284
                ", interestPaid=" + interestPaid +
252
                ", freeDays=" + freeDays +
285
                ", freeDays=" + freeDays +
253
                ", overdueRate=" + overdueRate +
286
                ", overdueRate=" + overdueRate +
254
                ", penaltyRate=" + penaltyRate +
287
                ", penaltyRate=" + penaltyRate +
255
                ", limitBlock=" + limitBlock +
288
                ", limitBlock=" + limitBlock +
-
 
289
                ", description='" + description + '\'' +
-
 
290
                ", flagship=" + flagship +
-
 
291
                ", flagshipDeadline=" + flagshipDeadline +
256
                ", loanStatus=" + loanStatus +
292
                ", loanStatus=" + loanStatus +
257
                ", totalPending=" + totalPending +
293
                ", totalPending=" + totalPending +
258
                ", dailyStatementModel=" + dailyStatementModel +
294
                ", dailyStatementModel=" + dailyStatementModel +
259
                '}';
295
                '}';
260
    }
296
    }