Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
31786 tejbeer 1
package com.spice.profitmandi.dao.entity.fofo;
2
 
3
import java.time.LocalDateTime;
4
 
5
import javax.persistence.Column;
6
import javax.persistence.Entity;
7
import javax.persistence.GeneratedValue;
8
import javax.persistence.GenerationType;
9
import javax.persistence.Id;
10
import javax.persistence.Table;
11
 
12
@Entity
13
@Table(name = "fofo.digify_retailer")
14
public class DigifyRetailer {
15
 
16
    @Id
17
    @Column(name = "id")
18
    @GeneratedValue(strategy = GenerationType.IDENTITY)
19
    private int id;
20
 
21
 
22
    @Column(name = "fofo_id")
23
    private int fofoId;
24
 
25
    @Column(name = "mobile")
26
    private String mobile;
27
 
28
    @Column(name = "`password`")
29
    private String password;
30
 
31
 
32
    @Column(name = "created_timestamp")
33
    private LocalDateTime createdTimestamp;
34
 
35
 
36
    public int getId() {
37
        return id;
38
    }
39
 
40
 
41
    public void setId(int id) {
42
        this.id = id;
43
    }
44
 
45
 
46
    public int getFofoId() {
47
        return fofoId;
48
    }
49
 
50
 
51
    public void setFofoId(int fofoId) {
52
        this.fofoId = fofoId;
53
    }
54
 
55
 
56
    public String getMobile() {
57
        return mobile;
58
    }
59
 
60
 
61
    public void setMobile(String mobile) {
62
        this.mobile = mobile;
63
    }
64
 
65
 
66
    public String getPassword() {
67
        return password;
68
    }
69
 
70
 
71
    public void setPassword(String password) {
72
        this.password = password;
73
    }
74
 
75
 
76
    public LocalDateTime getCreatedTimestamp() {
77
        return createdTimestamp;
78
    }
79
 
80
 
81
    public void setCreatedTimestamp(LocalDateTime createdTimestamp) {
82
        this.createdTimestamp = createdTimestamp;
83
    }
84
 
85
 
86
    @Override
87
    public String toString() {
88
        return "DigifyRetailer [id=" + id + ", fofoId=" + fofoId + ", mobile=" + mobile + ", password=" + password + ", createdTimestamp=" + createdTimestamp + "]";
89
    }
90
 
91
 
92
}