Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
25640 tejbeer 1
package com.spice.profitmandi.dao.entity.fofo;
2
 
3
import java.io.Serializable;
4
import java.time.LocalDate;
5
import java.time.LocalDateTime;
6
 
7
import javax.persistence.Column;
8
import javax.persistence.Convert;
9
import javax.persistence.Entity;
10
import javax.persistence.Id;
11
import javax.persistence.Table;
12
 
13
import com.spice.profitmandi.dao.convertor.LocalDateTimeAttributeConverter;
14
 
15
@Entity
16
@Table(name = "fofo.hygiene_data", schema = "fofo")
17
public class HygieneData implements Serializable {
18
 
19
	private static final long serialVersionUID = 1L;
20
 
21
	@Id
22
	@Column(name = "order_id")
23
	private int orderId;
24
 
25
	@Column(name = "fofo_id ")
26
	private int fofoId;
27
 
28
	public int getFofoId() {
29
		return fofoId;
30
	}
31
 
32
	public void setFofoId(int fofoId) {
33
		this.fofoId = fofoId;
34
	}
35
 
36
	@Column(name = "status")
37
	private String status;
38
 
39
	@Column(name = "remark")
40
	private String remark;
41
 
42
	@Column(name = "DOP")
43
	private LocalDateTime DOP;
44
 
45
	@Column(name = "rating")
46
	private int rating;
47
 
48
	@Column(name = "feedback")
49
	private String feedback;
50
 
51
	@Column(name = "created_timestamp")
52
	private LocalDateTime createdTimestamp;
53
 
54
	@Column(name = "disposed_timestamp")
55
	private LocalDateTime disposedTimestamp;
56
 
57
	@Column(name = "next_timestamp")
58
	private LocalDateTime nextTimestamp;
59
 
60
	@Column(name = "ques_phone")
61
	private String quesPhone;
62
 
63
	@Column(name = "ques_Information")
64
	private String quesInformation;
65
 
66
	@Column(name = "ques_invoice")
67
	private String quesInvoice;
68
 
69
	@Column(name = "hygiene_rating")
70
	private boolean hygieneRating;
71
 
72
	public boolean getHygieneRating() {
73
		return hygieneRating;
74
	}
75
 
76
	public void setHygieneRating(boolean hygieneRating) {
77
		this.hygieneRating = hygieneRating;
78
	}
79
 
80
	public int getOrderId() {
81
		return orderId;
82
	}
83
 
84
	public void setOrderId(int orderId) {
85
		this.orderId = orderId;
86
	}
87
 
88
	public String getQuesPhone() {
89
		return quesPhone;
90
	}
91
 
92
	public void setQuesPhone(String quesPhone) {
93
		this.quesPhone = quesPhone;
94
	}
95
 
96
	public String getQuesInformation() {
97
		return quesInformation;
98
	}
99
 
100
	public void setQuesInformation(String quesInformation) {
101
		this.quesInformation = quesInformation;
102
	}
103
 
104
	public String getQuesInvoice() {
105
		return quesInvoice;
106
	}
107
 
108
	public void setQuesInvoice(String quesInvoice) {
109
		this.quesInvoice = quesInvoice;
110
	}
111
 
112
	public static long getSerialversionuid() {
113
		return serialVersionUID;
114
	}
115
 
116
	public String getStatus() {
117
		return status;
118
	}
119
 
120
	public void setStatus(String status) {
121
		this.status = status;
122
	}
123
 
124
	public String getRemark() {
125
		return remark;
126
	}
127
 
128
	public void setRemark(String remark) {
129
		this.remark = remark;
130
	}
131
 
132
	public LocalDateTime getDOP() {
133
		return DOP;
134
	}
135
 
136
	public void setDOP(LocalDateTime dOP) {
137
		DOP = dOP;
138
	}
139
 
140
	public int getRating() {
141
		return rating;
142
	}
143
 
144
	public void setRating(int rating) {
145
		this.rating = rating;
146
	}
147
 
148
	public LocalDateTime getDisposedTimestamp() {
149
		return disposedTimestamp;
150
	}
151
 
152
	public void setDisposedTimestamp(LocalDateTime disposedTimestamp) {
153
		this.disposedTimestamp = disposedTimestamp;
154
	}
155
 
156
	public LocalDateTime getNextTimestamp() {
157
		return nextTimestamp;
158
	}
159
 
160
	public void setNextTimestamp(LocalDateTime nextTimestamp) {
161
		this.nextTimestamp = nextTimestamp;
162
	}
163
 
164
	public String getFeedback() {
165
		return feedback;
166
	}
167
 
168
	public void setFeedback(String feedback) {
169
		this.feedback = feedback;
170
	}
171
 
172
	public LocalDateTime getCreatedTimestamp() {
173
		return createdTimestamp;
174
	}
175
 
176
	public void setCreatedTimestamp(LocalDateTime createdTimestamp) {
177
		this.createdTimestamp = createdTimestamp;
178
	}
179
 
180
	@Override
181
	public String toString() {
182
		return "HygieneData [orderId=" + orderId + ", fofoId=" + fofoId + ", status=" + status + ", remark=" + remark
183
				+ ", DOP=" + DOP + ", rating=" + rating + ", feedback=" + feedback + ", createdTimestamp="
184
				+ createdTimestamp + ", disposedTimestamp=" + disposedTimestamp + ", nextTimestamp=" + nextTimestamp
185
				+ ", quesPhone=" + quesPhone + ", quesInformation=" + quesInformation + ", quesInvoice=" + quesInvoice
186
				+ ", hygieneRating=" + hygieneRating + "]";
187
	}
188
 
189
}