package com.bizofficer.hibernate.entity;

import javax.persistence.Cacheable;
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 = "subscription_websites")
@Cacheable
public class SubscriptionWebsites {

	@Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
	private Integer id;

	@Column(name = "title")	
	private String title;
	
	@Column(name = "phone")	
	private String phone;
	
	@Column(name = "email")	
	private String email;
	
	@Column(name = "address")	
	private String address;
	
	@Column(name = "webUrl")	
	private String webUrl;

	@Column(name = "logo")	
	private String logo;
	
	@Column(name = "currency")	
	private String currency;
	
	@Column(name = "currencySign")	
	private String currencySign;
	
	@Column(name = "favicon")	
	private String favicon;
	
	@Column(name = "copyright")	
	private String copyright;
	
	@Column(name = "developedBy")	
	private String developedBy;

	@Column(name = "about")	
	private String about;
	
	@Column(name = "homeKeyword")	
	private String homeKeyword;

	@Column(name = "homeDescription")	
	private String homeDescription;
	
	@Column(name = "homeTitle")	
	private String homeTitle;

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getPhone() {
		return phone;
	}

	public void setPhone(String phone) {
		this.phone = phone;
	}

	public String getEmail() {
		return email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public String getAddress() {
		return address;
	}

	public void setAddress(String address) {
		this.address = address;
	}

	public String getWebUrl() {
		return webUrl;
	}

	public void setWebUrl(String webUrl) {
		this.webUrl = webUrl;
	}

	public String getLogo() {
		return logo;
	}

	public void setLogo(String logo) {
		this.logo = logo;
	}

	public String getCurrency() {
		return currency;
	}

	public void setCurrency(String currency) {
		this.currency = currency;
	}

	public String getFavicon() {
		return favicon;
	}

	public void setFavicon(String favicon) {
		this.favicon = favicon;
	}

	public String getCopyright() {
		return copyright;
	}

	public void setCopyright(String copyright) {
		this.copyright = copyright;
	}

	public String getDevelopedBy() {
		return developedBy;
	}

	public void setDevelopedBy(String developedBy) {
		this.developedBy = developedBy;
	}

	public String getAbout() {
		return about;
	}

	public void setAbout(String about) {
		this.about = about;
	}

	public String getHomeKeyword() {
		return homeKeyword;
	}

	public void setHomeKeyword(String homeKeyword) {
		this.homeKeyword = homeKeyword;
	}

	public String getHomeDescription() {
		return homeDescription;
	}

	public void setHomeDescription(String homeDescription) {
		this.homeDescription = homeDescription;
	}

	public String getHomeTitle() {
		return homeTitle;
	}

	public void setHomeTitle(String homeTitle) {
		this.homeTitle = homeTitle;
	}

	public String getCurrencySign() {
		return currencySign;
	}

	public void setCurrencySign(String currencySign) {
		this.currencySign = currencySign;
	}


	
	

	
	

	



	


	
	
	
	

	
	
}
