View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.hrms;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.work_experience", schema = "hrms")public class WorkExperienceForm {@Id@Column@GeneratedValue(strategy = GenerationType.IDENTITY)private int id;@Column(name = "auth_id")private int authId;@Column(name = "education_qual")private String educationQualification;@Column(name = "organisation_name")private String organisationName;@Column(name = "exp_fresher")private String expFresher;@Column(name = "exp_year")private int expYear;@Column(name = "exp_month")private int expMonth;@Column(name = "last_designation")private String lastDesignation;@Column(name = "reason_leaving")private String reasonForLeaving;@Column(name = "total_exp_year")private int totalExpYear;@Column(name = "total_exp_month")private int totalExpMonth;public int getId() {return id;}public void setId(int id) {this.id = id;}public int getAuthId() {return authId;}public void setAuthId(int authId) {this.authId = authId;}public String getEducationQualification() {return educationQualification;}public void setEducationQualification(String educationQualification) {this.educationQualification = educationQualification;}public String getOrganisationName() {return organisationName;}public void setOrganisationName(String organisationName) {this.organisationName = organisationName;}public String getExpFresher() {return expFresher;}public void setExpFresher(String expFresher) {this.expFresher = expFresher;}public int getExpYear() {return expYear;}public void setExpYear(int expYear) {this.expYear = expYear;}public int getExpMonth() {return expMonth;}public void setExpMonth(int expMonth) {this.expMonth = expMonth;}public String getLastDesignation() {return lastDesignation;}public void setLastDesignation(String lastDesignation) {this.lastDesignation = lastDesignation;}public String getReasonForLeaving() {return reasonForLeaving;}public void setReasonForLeaving(String reasonForLeaving) {this.reasonForLeaving = reasonForLeaving;}public int getTotalExpYear() {return totalExpYear;}public void setTotalExpYear(int totalExpYear) {this.totalExpYear = totalExpYear;}public int getTotalExpMonth() {return totalExpMonth;}public void setTotalExpMonth(int totalExpMonth) {this.totalExpMonth = totalExpMonth;}@Overridepublic String toString() {return "WorkExperienceForm [id=" + id + ", authId=" + authId + ", educationQualification="+ educationQualification + ", organisationName=" + organisationName + ", expFresher=" + expFresher+ ", expYear=" + expYear + ", expMonth=" + expMonth + ", lastDesignation=" + lastDesignation+ ", reasonForLeaving=" + reasonForLeaving + ", totalExpYear=" + totalExpYear + ", totalExpMonth="+ totalExpMonth + "]";}public WorkExperienceForm() {super();// TODO Auto-generated constructor stub}}