Subversion Repositories SmartDukaan

Rev

Rev 32795 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
32737 amit.gupta 1
package com.spice.profitmandi.dao.entity.fofo;
2
 
32795 amit.gupta 3
import javax.persistence.*;
32737 amit.gupta 4
import java.time.LocalDateTime;
5
 
6
 
7
@Entity
32795 amit.gupta 8
@Table(name = "fofo.retailer_contact")
32737 amit.gupta 9
public class RetailerContact {
10
    @Id
32795 amit.gupta 11
    @GeneratedValue(strategy = GenerationType.IDENTITY)
12
    @Column
32737 amit.gupta 13
    private int id;
14
 
15
    @Column
16
    private int fofoId;
17
 
18
 
19
    @Column
20
    private String name;
21
 
22
    @Column
23
    private String mobile;
24
 
25
    @Column
26
    private LocalDateTime createdAt;
27
 
28
    @Column
29
    private boolean active;
30
 
35648 ranu 31
    @Column
32
    private String brandName;
33
 
34
    @Column
35
    private String contactType;
36
 
32737 amit.gupta 37
    public int getId() {
38
        return id;
39
    }
40
 
41
    public void setId(int id) {
42
        this.id = id;
43
    }
44
 
45
    public int getFofoId() {
46
        return fofoId;
47
    }
48
 
49
    public void setFofoId(int fofoId) {
50
        this.fofoId = fofoId;
51
    }
52
 
53
    public String getName() {
54
        return name;
55
    }
56
 
57
    public void setName(String name) {
58
        this.name = name;
59
    }
60
 
61
    public String getMobile() {
62
        return mobile;
63
    }
64
 
65
    public void setMobile(String mobile) {
66
        this.mobile = mobile;
67
    }
68
 
69
    public LocalDateTime getCreatedAt() {
70
        return createdAt;
71
    }
72
 
73
    public void setCreatedAt(LocalDateTime createdAt) {
74
        this.createdAt = createdAt;
75
    }
76
 
77
    public boolean isActive() {
78
        return active;
79
    }
80
 
81
    public void setActive(boolean active) {
82
        this.active = active;
83
    }
35648 ranu 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
    }
32737 amit.gupta 100
}