Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
31370 tejbeer 1
package com.spice.profitmandi.dao.entity.user;
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 = "user.lead_detail", schema = "user")
14
public class LeadDetail {
15
 
16
	@Id
17
	@Column(name = "id", unique = true, updatable = false)
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)
19
	private int id;
20
 
21
	@Column(name = "lead_id")
22
	private int leadId;
23
 
24
	@Column(name = "outlet_name")
25
	private String outletName;
26
 
27
	@Column(name = "counter_size")
28
	private int counterSize;
29
 
30
	@Column(name = "frontp")
31
	private int frontp;
32
 
33
	@Column(name = "internal_long_shot")
34
	private int internalLongShot;
35
 
36
	@Column(name = "front_with_market")
37
	private int frontWithMarket;
38
 
39
	@Column(name = "internal_left_wall")
40
	private int internalLeftWall;
41
 
42
	@Column(name = "internal_right_wall")
43
	private int internalRightWall;
44
 
45
	@Column(name = "created_by")
46
	private int createdBy;
47
 
48
	@Column(name = "created_timestamp")
49
	private LocalDateTime createdTimestamp;
50
 
51
	public int getId() {
52
		return id;
53
	}
54
 
55
	public void setId(int id) {
56
		this.id = id;
57
	}
58
 
59
	public int getCreatedBy() {
60
		return createdBy;
61
	}
62
 
63
	public void setCreatedBy(int createdBy) {
64
		this.createdBy = createdBy;
65
	}
66
 
67
	public int getLeadId() {
68
		return leadId;
69
	}
70
 
71
	public void setLeadId(int leadId) {
72
		this.leadId = leadId;
73
	}
74
 
75
	public String getOutletName() {
76
		return outletName;
77
	}
78
 
79
	public void setOutletName(String outletName) {
80
		this.outletName = outletName;
81
	}
82
 
83
	public int getCounterSize() {
84
		return counterSize;
85
	}
86
 
87
	public void setCounterSize(int counterSize) {
88
		this.counterSize = counterSize;
89
	}
90
 
91
	public int getFrontp() {
92
		return frontp;
93
	}
94
 
95
	public void setFrontp(int frontp) {
96
		this.frontp = frontp;
97
	}
98
 
99
	public int getInternalLongShot() {
100
		return internalLongShot;
101
	}
102
 
103
	public void setInternalLongShot(int internalLongShot) {
104
		this.internalLongShot = internalLongShot;
105
	}
106
 
107
	public int getFrontWithMarket() {
108
		return frontWithMarket;
109
	}
110
 
111
	public void setFrontWithMarket(int frontWithMarket) {
112
		this.frontWithMarket = frontWithMarket;
113
	}
114
 
115
	public int getInternalLeftWall() {
116
		return internalLeftWall;
117
	}
118
 
119
	public void setInternalLeftWall(int internalLeftWall) {
120
		this.internalLeftWall = internalLeftWall;
121
	}
122
 
123
	public int getInternalRightWall() {
124
		return internalRightWall;
125
	}
126
 
127
	public void setInternalRightWall(int internalRightWall) {
128
		this.internalRightWall = internalRightWall;
129
	}
130
 
131
	public LocalDateTime getCreatedTimestamp() {
132
		return createdTimestamp;
133
	}
134
 
135
	public void setCreatedTimestamp(LocalDateTime createdTimestamp) {
136
		this.createdTimestamp = createdTimestamp;
137
	}
138
 
139
	@Override
140
	public String toString() {
141
		return "LeadDetail [id=" + id + ", leadId=" + leadId + ", outletName=" + outletName + ", counterSize="
142
				+ counterSize + ", frontp=" + frontp + ", internalLongShot=" + internalLongShot + ", frontWithMarket="
143
				+ frontWithMarket + ", internalLeftWall=" + internalLeftWall + ", internalRightWall="
144
				+ internalRightWall + ", createdBy=" + createdBy + ", createdTimestamp=" + createdTimestamp + "]";
145
	}
146
 
147
}