
nl.tno.bim.mapping.domain.IfcMaterialKeyword Maven / Gradle / Ivy
package nl.tno.bim.mapping.domain;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "ifc_materials_keywords")
public class IfcMaterialKeyword {
@Id
@GeneratedValue
private Long id;
private String keyword;
private Long count;
public IfcMaterialKeyword() {}
public IfcMaterialKeyword(String word, Long count) {
this.setKeyword(word);
this.setCount(count);
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getKeyword() {
return keyword;
}
public void setKeyword(String keyword) {
this.keyword = keyword;
}
public Long getCount() {
return count;
}
public void setCount(Long count) {
this.count = count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy