Subversion Repositories SmartDukaan

Rev

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.address_details", schema = "hrms")
public class AddressDetailsForm {

        @Id
        @Column
        @GeneratedValue(strategy = GenerationType.IDENTITY)
        private int id;
        @Column(name = "auth_id")
        private int authId;
        @Column(name = "local_address")
        private String localAddress;
        @Column(name = "permanent_address")
        private String permanentAdress;
        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 getLocalAddress() {
                return localAddress;
        }
        public void setLocalAddress(String localAddress) {
                this.localAddress = localAddress;
        }
        public String getPermanentAdress() {
                return permanentAdress;
        }
        public void setPermanentAdress(String permanentAdress) {
                this.permanentAdress = permanentAdress;
        }
        public AddressDetailsForm() {
                super();
                // TODO Auto-generated constructor stub
        }
        
        
        
        

}