All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.tno.bim.mapping.domain.IfcToNlsfb Maven / Gradle / Ivy

package nl.tno.bim.mapping.domain;

import java.io.Serializable;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
@SuppressWarnings("serial")
@Entity
@Table(name = "Ifc_to_nlsfb_map")
public class IfcToNlsfb implements Serializable {
    @Id
    @GeneratedValue
    private Long id;
    @Column(name = "nlsfb_code")
    private String nlsfbCode;

    @Column(name = "ifc_product_type")
    private String ifcProductType;

    public Long getId() {
        return id;
    }

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

    public String getNlsfbCode() {
        return nlsfbCode;
    }

    public void setNlsfbCode(String nlsfbCode) {
        this.nlsfbCode = nlsfbCode;
    }

    public String getIfcProductType() {
        return ifcProductType;
    }

    public void setIfcProductType(String ifcProductType) {
        this.ifcProductType = ifcProductType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy