32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
|
|
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
|
|
<!-- Generated 26 April 2011 11:37:37 AM by Hibernate Tools 3.4.0.CR1 -->
|
|
<hibernate-mapping>
|
|
<class name="com.mkyong.stock.Stock" table="stock" catalog="mkyongdb">
|
|
<id name="stockId" type="java.lang.Integer">
|
|
<column name="STOCK_ID" />
|
|
<generator class="identity" />
|
|
</id>
|
|
|
|
<property name="stockId2" type="string">
|
|
<column name="STOCK_ID2" length="10" not-null="true" />
|
|
</property>
|
|
|
|
<property name="stockCode" type="string">
|
|
<column name="STOCK_CODE" length="10" not-null="true" unique="true" />
|
|
</property>
|
|
|
|
<property name="stockName" type="string">
|
|
<column name="STOCK_NAME" length="20" not-null="true" unique="true" />
|
|
</property>
|
|
|
|
<set name="stockDailyRecords" table="stock_daily_record" inverse="true" lazy="true" fetch="select">
|
|
<key>
|
|
<column name="STOCK_ID" not-null="true" />
|
|
</key>
|
|
<one-to-many class="com.mkyong.stock.StockDailyRecord" />
|
|
</set>
|
|
</class>
|
|
</hibernate-mapping>
|