View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.hrms;import java.time.LocalDate;import java.time.LocalDateTime;import javax.persistence.Column;import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id;import javax.persistence.Table;@Entity@Table(name = "hrms.employ_form", schema = "hrms")public class EmployForm {@Id@Column@GeneratedValue(strategy = GenerationType.IDENTITY)private int id;@Column(name = "auth_id")private int authId;@Column(name = "employee_name")private String employeeName;@Column(name = "gender")private String gender;@Column(name = "designation")private String designation;@Column(name = "state")private String state;@Column(name = "area")private String area;@Column(name = "city")private String city;@Column(name = "project")private String project;@Column(name = "date_joining")private LocalDate dateJoining;@Column(name = "how_old_system")private int howOldSystem;@Column(name = "date_leaving")private LocalDate dateOfleaving;@Column(name = "day_worked")private int dayWorked;@Column(name = "created_time_stamp")private LocalDateTime createdTimestamp;@Column(name = "updated_time_stamp")private LocalDateTime updatedTimestamp;public int getId() {return id;}public void setId(int id) {this.id = id;}public String getGender() {return gender;}public void setGender(String gender) {this.gender = gender;}public int getAuthId() {return authId;}public void setAuthId(int authId) {this.authId = authId;}public String getEmployeeName() {return employeeName;}public void setEmployeeName(String employeeName) {this.employeeName = employeeName;}public String getDesignation() {return designation;}public void setDesignation(String designation) {this.designation = designation;}public String getState() {return state;}public void setState(String state) {this.state = state;}public String getArea() {return area;}public void setArea(String area) {this.area = area;}public String getCity() {return city;}public void setCity(String city) {this.city = city;}public String getProject() {return project;}public void setProject(String project) {this.project = project;}public LocalDate getDateJoining() {return dateJoining;}public void setDateJoining(LocalDate dateJoining) {this.dateJoining = dateJoining;}public int getHowOldSystem() {return howOldSystem;}public void setHowOldSystem(int howOldSystem) {this.howOldSystem = howOldSystem;}public LocalDate getDateOfleaving() {return dateOfleaving;}public void setDateOfleaving(LocalDate dateOfleaving) {this.dateOfleaving = dateOfleaving;}public int getDayWorked() {return dayWorked;}public void setDayWorked(int dayWorked) {this.dayWorked = dayWorked;}public LocalDateTime getCreatedTimestamp() {return createdTimestamp;}public void setCreatedTimestamp(LocalDateTime createdTimestamp) {this.createdTimestamp = createdTimestamp;}public LocalDateTime getUpdatedTimestamp() {return updatedTimestamp;}public void setUpdatedTimestamp(LocalDateTime updatedTimestamp) {this.updatedTimestamp = updatedTimestamp;}public EmployForm() {super();// TODO Auto-generated constructor stub}}