?? graphictype.hbm
字號:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >
<hibernate-mapping package="domain">
<class name="GraphicType" table="graphicType">
<cache usage="read-write"/>
<id column="graphicType_id" name="Id" type="integer" >
<generator class="native" />
</id>
<property column="graphicType_name" length="40" name="GraphictypeName" not-null="false" type="string" />
<property column="graphicType_memo" length="100" name="GraphictypeMemo" not-null="false" type="string" />
<set inverse="true" lazy="false" name="GraphicItemSet"
outer-join = "true"
order-by="graphicItem_id">
<cache usage="read-write"/>
<key column="graphicType_id" />
<one-to-many class="GraphicItem" />
</set>
</class>
</hibernate-mapping>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -