| 28126 |
tejbeer |
1 |
package com.spice.profitmandi.dao.hrms;
|
|
|
2 |
|
|
|
3 |
import javax.persistence.Column;
|
|
|
4 |
import javax.persistence.Entity;
|
|
|
5 |
import javax.persistence.GeneratedValue;
|
|
|
6 |
import javax.persistence.GenerationType;
|
|
|
7 |
import javax.persistence.Id;
|
|
|
8 |
import javax.persistence.Table;
|
|
|
9 |
|
|
|
10 |
@Entity
|
|
|
11 |
@Table(name = "hrms.insurance_detail_form", schema = "hrms")
|
|
|
12 |
public class InsuranceDetailForm {
|
|
|
13 |
|
|
|
14 |
@Id
|
|
|
15 |
@Column
|
|
|
16 |
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
|
17 |
private int id;
|
|
|
18 |
@Column(name = "auth_id")
|
|
|
19 |
private int authId;
|
|
|
20 |
@Column(name = "nominee_name")
|
|
|
21 |
private String nomineeName;
|
|
|
22 |
|
|
|
23 |
@Column(name = "relation")
|
|
|
24 |
private String relation;
|
|
|
25 |
@Column(name = "persoanal_accident")
|
|
|
26 |
private String persoanalAccident;
|
|
|
27 |
@Column(name = "mediclaim")
|
|
|
28 |
private String mediclaim;
|
|
|
29 |
public int getId() {
|
|
|
30 |
return id;
|
|
|
31 |
}
|
|
|
32 |
public void setId(int id) {
|
|
|
33 |
this.id = id;
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
public int getAuthId() {
|
|
|
37 |
return authId;
|
|
|
38 |
}
|
|
|
39 |
public void setAuthId(int authId) {
|
|
|
40 |
this.authId = authId;
|
|
|
41 |
}
|
|
|
42 |
public String getNomineeName() {
|
|
|
43 |
return nomineeName;
|
|
|
44 |
}
|
|
|
45 |
public void setNomineeName(String nomineeName) {
|
|
|
46 |
this.nomineeName = nomineeName;
|
|
|
47 |
}
|
|
|
48 |
public String getRelation() {
|
|
|
49 |
return relation;
|
|
|
50 |
}
|
|
|
51 |
public void setRelation(String relation) {
|
|
|
52 |
this.relation = relation;
|
|
|
53 |
}
|
|
|
54 |
public String getPersoanalAccident() {
|
|
|
55 |
return persoanalAccident;
|
|
|
56 |
}
|
|
|
57 |
public void setPersoanalAccident(String persoanalAccident) {
|
|
|
58 |
this.persoanalAccident = persoanalAccident;
|
|
|
59 |
}
|
|
|
60 |
public String getMediclaim() {
|
|
|
61 |
return mediclaim;
|
|
|
62 |
}
|
|
|
63 |
public void setMediclaim(String mediclaim) {
|
|
|
64 |
this.mediclaim = mediclaim;
|
|
|
65 |
}
|
|
|
66 |
@Override
|
|
|
67 |
public String toString() {
|
|
|
68 |
return "InsuranceDetailForm [id=" + id + ", authId=" + authId + ", nomineeName=" + nomineeName + ", relation="
|
|
|
69 |
+ relation + ", persoanalAccident=" + persoanalAccident + ", mediclaim=" + mediclaim + "]";
|
|
|
70 |
}
|
|
|
71 |
public InsuranceDetailForm() {
|
|
|
72 |
super();
|
|
|
73 |
// TODO Auto-generated constructor stub
|
|
|
74 |
}
|
|
|
75 |
|
|
|
76 |
|
|
|
77 |
|
|
|
78 |
}
|