mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-19 02:05:32 +08:00
16 lines
613 B
XML
16 lines
613 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE hibernate-mapping PUBLIC
|
|
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
|
|
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
|
|
|
|
<hibernate-mapping>
|
|
|
|
<class name="com.wisemapping.model.CollaborationProperties" table="COLLABORATION_PROPERTIES">
|
|
<id name="id">
|
|
<generator class="increment"/>
|
|
</id>
|
|
<property name="mindmapProperties" column="mindmap_properties" unique="false" not-null="false"/>
|
|
<property name="starred" column="starred" unique="false" not-null="true"/>
|
|
</class>
|
|
|
|
</hibernate-mapping> |