package eu.dnetlib.goldoa.domain;

import com.google.gwt.user.client.rpc.IsSerializable;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;


/**
 * The persistent class for the budgetfile database table.
 * 
 */
@Entity
public class Budgetfile implements IsSerializable {
	private static final long serialVersionUID = 1L;

	private byte[] content;

	@Column(columnDefinition = "text")
	private String contenttype;

	@Id
	@Column(columnDefinition = "text")
	private String id;

	public Budgetfile() {
	}

	public byte[] getContent() {
		return this.content;
	}

	public void setContent(byte[] content) {
		this.content = content;
	}

	public String getContenttype() {
		return this.contenttype;
	}

	public void setContenttype(String contenttype) {
		this.contenttype = contenttype;
	}

	public String getId() {
		return this.id;
	}

	public void setId(String id) {
		this.id = id;
	}


}