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 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.address_details", schema = "hrms")
12
public class AddressDetailsForm {
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 = "local_address")
21
	private String localAddress;
22
	@Column(name = "permanent_address")
23
	private String permanentAdress;
24
	public int getId() {
25
		return id;
26
	}
27
	public void setId(int id) {
28
		this.id = id;
29
	}
30
 
31
 
32
	public int getAuthId() {
33
		return authId;
34
	}
35
	public void setAuthId(int authId) {
36
		this.authId = authId;
37
	}
38
	public String getLocalAddress() {
39
		return localAddress;
40
	}
41
	public void setLocalAddress(String localAddress) {
42
		this.localAddress = localAddress;
43
	}
44
	public String getPermanentAdress() {
45
		return permanentAdress;
46
	}
47
	public void setPermanentAdress(String permanentAdress) {
48
		this.permanentAdress = permanentAdress;
49
	}
50
	public AddressDetailsForm() {
51
		super();
52
		// TODO Auto-generated constructor stub
53
	}
54
 
55
 
56
 
57
 
58
 
59
}