chapter.hbm.xml.svn-base

来自「在线书库系统 查看图书 编写文章 管理员管理」· SVN-BASE 代码 · 共 33 行

SVN-BASE
33
字号
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!-- 
    Mapping file autogenerated by MyEclipse Persistence Tools
-->
<hibernate-mapping>
    <class name="StoryManage.Dal.Chapter" table="Chapter" schema="dbo" catalog="StoryManage">
        <id name="chapterId" type="java.lang.Integer">
            <column name="ChapterID" />
            <generator class="native" />
        </id>
        <property name="chapterTitle" type="java.lang.String">
            <column name="ChapterTitle" length="100" not-null="true" />
        </property>
        <property name="content" type="java.lang.String">
            <column name="Content" not-null="true" />
        </property>
        <property name="nextChapterId" type="java.lang.Integer">
            <column name="NextChapterID" not-null="true" />
        </property>
        <property name="isVip" type="java.lang.Integer">
            <column name="IsVIP" not-null="true" />
        </property>
        <property name="storyId" type="java.lang.Integer">
            <column name="StoryID" not-null="true" />
        </property>
        <property name="isRelease" type="java.lang.Integer">
            <column name="IsRelease" not-null="true" />
        </property>
    </class>
</hibernate-mapping>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?