Subversion Repositories SmartDukaan

Rev

Rev 28768 | Rev 29055 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28768 Rev 28977
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.fofo;
1
package com.spice.profitmandi.dao.entity.fofo;
-
 
2
import java.time.LocalDateTime;
-
 
3
 
2
import javax.persistence.Column;
4
import javax.persistence.Column;
3
import javax.persistence.Entity;
5
import javax.persistence.Entity;
4
import javax.persistence.EnumType;
6
import javax.persistence.EnumType;
5
import javax.persistence.Enumerated;
7
import javax.persistence.Enumerated;
6
import javax.persistence.GeneratedValue;
8
import javax.persistence.GeneratedValue;
Line 36... Line 38...
36
	private ApplicableServiceType applicableType;
38
	private ApplicableServiceType applicableType;
37
	
39
	
38
	@Column(name="code")
40
	@Column(name="code")
39
	private String code;
41
	private String code;
40
	
42
	
-
 
43
	@Column(name="create_timestamp")
-
 
44
	private LocalDateTime createTimestamp;
-
 
45
	
41
	@Column(name="na_Comment")
46
	@Column(name="na_Comment")
42
	private String na_Comment;
47
	private String na_Comment;
43
 
48
 
44
	public int getId() {
49
	public int getId() {
45
		return id;
50
		return id;
Line 54... Line 59...
54
	}
59
	}
55
 
60
 
56
	public void setFofoId(int fofoId) {
61
	public void setFofoId(int fofoId) {
57
		this.fofoId = fofoId;
62
		this.fofoId = fofoId;
58
	}
63
	}
-
 
64
	
-
 
65
	
-
 
66
 
-
 
67
	public LocalDateTime getCreateTimestamp() {
-
 
68
		return createTimestamp;
-
 
69
	}
-
 
70
 
-
 
71
	public void setCreateTimestamp(LocalDateTime createTimestamp) {
-
 
72
		this.createTimestamp = createTimestamp;
-
 
73
	}
59
 
74
 
60
	public int getServiceId() {
75
	public int getServiceId() {
61
		return serviceId;
76
		return serviceId;
62
	}
77
	}
63
 
78
 
Line 133... Line 148...
133
	}
148
	}
134
 
149
 
135
	@Override
150
	@Override
136
	public String toString() {
151
	public String toString() {
137
		return "PartnerService [id=" + id + ", fofoId=" + fofoId + ", serviceId=" + serviceId + ", applicableType="
152
		return "PartnerService [id=" + id + ", fofoId=" + fofoId + ", serviceId=" + serviceId + ", applicableType="
138
				+ applicableType + ", code=" + code + ", na_Comment=" + na_Comment + "]";
153
				+ applicableType + ", code=" + code + ", createTimestamp=" + createTimestamp + ", na_Comment="
-
 
154
				+ na_Comment + "]";
139
	}
155
	}
140
	
156
	
141
 
157
 
142
	
158
	
143
	
159