Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34210 tejus.loha 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.time.LocalDateTime;
4
 
5
public class ProcessImeisModel {
6
    private int offerId;
7
    private String imeis;
8
    private LocalDateTime createTimestamp;
9
    private boolean bocked;
10
 
11
    public int getOfferId() {
12
        return offerId;
13
    }
14
 
15
    public void setOfferId(int offerId) {
16
        this.offerId = offerId;
17
    }
18
 
19
    public String getImeis() {
20
        return imeis;
21
    }
22
 
23
    public void setImeis(String imeis) {
24
        this.imeis = imeis;
25
    }
26
 
27
    public LocalDateTime getCreateTimestamp() {
28
        return createTimestamp;
29
    }
30
 
31
    public void setCreateTimestamp(LocalDateTime createTimestamp) {
32
        this.createTimestamp = createTimestamp;
33
    }
34
 
35
    public boolean isBocked() {
36
        return bocked;
37
    }
38
 
39
    public void setBocked(boolean bocked) {
40
        this.bocked = bocked;
41
    }
42
 
43
    @Override
44
    public String toString() {
45
        return "ProcessImeisModel{" +
46
                "offerId=" + offerId +
47
                ", imeis='" + imeis + '\'' +
48
                ", createTimestamp=" + createTimestamp +
49
                ", bocked=" + bocked +
50
                '}';
51
    }
52
}