Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
28126 tejbeer 1
package com.spice.profitmandi.dao.hrms;
2
 
3
import java.time.LocalDate;
4
import java.time.LocalDateTime;
5
 
6
import javax.persistence.Column;
7
import javax.persistence.Entity;
8
import javax.persistence.GeneratedValue;
9
import javax.persistence.GenerationType;
10
import javax.persistence.Id;
11
import javax.persistence.Table;
12
 
13
 
14
@Entity
15
@Table(name = "hrms.employ_form", schema = "hrms")
16
public class EmployForm {
17
 
18
	@Id
19
	@Column
20
	@GeneratedValue(strategy = GenerationType.IDENTITY)	
21
	private int id;
22
	@Column(name = "auth_id")
23
	private int authId;
24
	@Column(name = "employee_name")
25
	private String employeeName;
26
	@Column(name = "gender")
27
	private String gender;
28
	@Column(name = "designation")
29
	private String designation;
30
	@Column(name = "state")
31
	private String state;
32
	@Column(name = "area")
33
	private String area;
34
	@Column(name = "city")
35
	private String city;
36
	@Column(name = "project")
37
	private String project;
38
	@Column(name = "date_joining")
39
	private LocalDate dateJoining;
40
	@Column(name = "how_old_system")
41
	private int howOldSystem;
42
	@Column(name = "date_leaving")
43
	private LocalDate dateOfleaving;
44
	@Column(name = "day_worked")
45
	private int dayWorked;
46
	@Column(name = "created_time_stamp")
47
	private LocalDateTime createdTimestamp;
48
	@Column(name = "updated_time_stamp")
49
	private LocalDateTime updatedTimestamp;
50
	public int getId() {
51
		return id;
52
	}
53
	public void setId(int id) {
54
		this.id = id;
55
	}
56
 
57
 
58
	public String getGender() {
59
		return gender;
60
	}
61
	public void setGender(String gender) {
62
		this.gender = gender;
63
	}
64
	public int getAuthId() {
65
		return authId;
66
	}
67
	public void setAuthId(int authId) {
68
		this.authId = authId;
69
	}
70
	public String getEmployeeName() {
71
		return employeeName;
72
	}
73
	public void setEmployeeName(String employeeName) {
74
		this.employeeName = employeeName;
75
	}
76
	public String getDesignation() {
77
		return designation;
78
	}
79
	public void setDesignation(String designation) {
80
		this.designation = designation;
81
	}
82
	public String getState() {
83
		return state;
84
	}
85
	public void setState(String state) {
86
		this.state = state;
87
	}
88
	public String getArea() {
89
		return area;
90
	}
91
	public void setArea(String area) {
92
		this.area = area;
93
	}
94
	public String getCity() {
95
		return city;
96
	}
97
	public void setCity(String city) {
98
		this.city = city;
99
	}
100
	public String getProject() {
101
		return project;
102
	}
103
	public void setProject(String project) {
104
		this.project = project;
105
	}
106
	public LocalDate getDateJoining() {
107
		return dateJoining;
108
	}
109
	public void setDateJoining(LocalDate dateJoining) {
110
		this.dateJoining = dateJoining;
111
	}
112
	public int getHowOldSystem() {
113
		return howOldSystem;
114
	}
115
	public void setHowOldSystem(int howOldSystem) {
116
		this.howOldSystem = howOldSystem;
117
	}
118
	public LocalDate getDateOfleaving() {
119
		return dateOfleaving;
120
	}
121
	public void setDateOfleaving(LocalDate dateOfleaving) {
122
		this.dateOfleaving = dateOfleaving;
123
	}
124
	public int getDayWorked() {
125
		return dayWorked;
126
	}
127
	public void setDayWorked(int dayWorked) {
128
		this.dayWorked = dayWorked;
129
	}
130
	public LocalDateTime getCreatedTimestamp() {
131
		return createdTimestamp;
132
	}
133
	public void setCreatedTimestamp(LocalDateTime createdTimestamp) {
134
		this.createdTimestamp = createdTimestamp;
135
	}
136
	public LocalDateTime getUpdatedTimestamp() {
137
		return updatedTimestamp;
138
	}
139
	public void setUpdatedTimestamp(LocalDateTime updatedTimestamp) {
140
		this.updatedTimestamp = updatedTimestamp;
141
	}
142
	public EmployForm() {
143
		super();
144
		// TODO Auto-generated constructor stub
145
	}
146
 
147
 
148
 
149
}