package webctdbexport.db;
// Generated 17-Jun-2011 11:38:57 by Hibernate Tools 3.4.0.CR1
import java.math.BigDecimal;
import java.sql.Blob;
import javax.persistence.Column;
import javax.persistence.Embeddable;
/**
* CmsFileContentVId generated by hbm2java
*/
@Embeddable
public class CmsFileContentVId implements java.io.Serializable {
private BigDecimal id;
private Blob content;
private BigDecimal mimetypeId;
private String characterSet;
private String location;
private BigDecimal remoteLobId;
private String xythosId;
private BigDecimal createTs;
private BigDecimal lastmodifyTs;
public CmsFileContentVId() {
}
public CmsFileContentVId(BigDecimal id, Blob content, BigDecimal mimetypeId, String characterSet, String location, BigDecimal remoteLobId, String xythosId, BigDecimal createTs, BigDecimal lastmodifyTs) {
this.id = id;
this.content = content;
this.mimetypeId = mimetypeId;
this.characterSet = characterSet;
this.location = location;
this.remoteLobId = remoteLobId;
this.xythosId = xythosId;
this.createTs = createTs;
this.lastmodifyTs = lastmodifyTs;
}
@Column(name="ID", nullable=false, precision=20, scale=0)
public BigDecimal getId() {
return this.id;
}
public void setId(BigDecimal id) {
this.id = id;
}
@Column(name="CONTENT", nullable=false)
public Blob getContent() {
return this.content;
}
public void setContent(Blob content) {
this.content = content;
}
@Column(name="MIMETYPE_ID", nullable=false, precision=20, scale=0)
public BigDecimal getMimetypeId() {
return this.mimetypeId;
}
public void setMimetypeId(BigDecimal mimetypeId) {
this.mimetypeId = mimetypeId;
}
@Column(name="CHARACTER_SET", nullable=false, length=30)
public String getCharacterSet() {
return this.characterSet;
}
public void setCharacterSet(String characterSet) {
this.characterSet = characterSet;
}
@Column(name="LOCATION", nullable=false, length=6)
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
@Column(name="REMOTE_LOB_ID", nullable=false, precision=20, scale=0)
public BigDecimal getRemoteLobId() {
return this.remoteLobId;
}
public void setRemoteLobId(BigDecimal remoteLobId) {
this.remoteLobId = remoteLobId;
}
@Column(name="XYTHOS_ID", nullable=false, length=30)
public String getXythosId() {
return this.xythosId;
}
public void setXythosId(String xythosId) {
this.xythosId = xythosId;
}
@Column(name="CREATE_TS", nullable=false, precision=20, scale=0)
public BigDecimal getCreateTs() {
return this.createTs;
}
public void setCreateTs(BigDecimal createTs) {
this.createTs = createTs;
}
@Column(name="LASTMODIFY_TS", nullable=false, precision=20, scale=0)
public BigDecimal getLastmodifyTs() {
return this.lastmodifyTs;
}
public void setLastmodifyTs(BigDecimal lastmodifyTs) {
this.lastmodifyTs = lastmodifyTs;
}
}