2019-08-26 16:11:00 +02:00
|
|
|
|
<?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" />
|
2019-09-17 17:44:57 +02:00
|
|
|
|
<property column="ParentOID" type="Int64" name="ParentOID" />
|
2019-08-26 16:11:00 +02:00
|
|
|
|
</class>
|
|
|
|
|
|
</hibernate-mapping>
|