13 lines
585 B
XML
13 lines
585 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
|
|
<class name="BeWo.Data.Entities.Icf,BeWo.Data" table="Icf">
|
|
<id name="Oid" column="Oid" type="Int64" unsaved-value="null">
|
|
<generator class="identity" />
|
|
</id>
|
|
<property column="Code" type="String" name="Code" length="64" />
|
|
<property column="Bezeichnung" type="String" name="Bezeichnung" />
|
|
<property column="Beschreibung" type="String" name="Beschreibung" />
|
|
<property column="ParentOID" type="Int64" name="ParentOID" />
|
|
</class>
|
|
</hibernate-mapping> |