EnterpriseInfo.hbm.xml 1.08 KB
Newer Older
PWF-WK01\pengwufeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
<?xml version="1.0" encoding="UTF-8"?>  
<!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.beecode.inz.enterprisesetting.entity.EnterpriseInfo" table="inz_basis_enterprise" optimistic-lock="version">
		<id name="id" type="uuid-binary">
			<column name="id" length="16"/>
			<generator class="uuid2" />
		</id>
		<property name="title" type="string">
			<column name="title" not-null="true"/>
		</property>
		<property name="imgFormat" type="string" >
			<column name="img_format"/>
		</property>
		<property name="enabled" type="boolean" >
			<column name="enabled" />
		</property>
		<property name="defaulted" type="boolean" >
			<column name="defaulted" />
		</property>
		<property name="modifyTime">
			<column name="modify_time" />
		</property>
		<property name="modifyStaff" type="uuid-binary" >
			<column name="modify_staff" length="16"/>
		</property>
		<property name="scheme" type="int" >
			<column name="scheme"/>
		</property>
	</class>
</hibernate-mapping>