⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 .#users.hbm.xml.1.3

📁 网上结婚登记系统 Java语言编写 可直接运行
💻 3
字号:
<?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="task.domain.Users" table="users" catalog="wedding">
        <id name="id" type="integer">
            <column name="id" />
            <generator class="assigned" />
        </id>
        <property name="name" type="string">
            <column name="name" length="20" not-null="true" />
        </property>
        <property name="password" type="string">
            <column name="password" length="20" not-null="true" />
        </property>
        <property name="sex" type="string">
            <column name="sex" length="10" not-null="true" />
        </property>
        <property name="birthday" type="date">
            <column name="birthday" length="0" not-null="true" />
        </property>
        <property name="role" type="string">
            <column name="role" length="20" not-null="true" />
        </property>
        <property name="username" type="string">
            <column name="username" length="20" not-null="true" />
        </property>
        <set name="newses" inverse="true">
            <key>
                <column name="userid" not-null="true" />
            </key>
            <one-to-many class="task.domain.News" />
        </set>
    </class>
</hibernate-mapping>

⌨️ 快捷键说明

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