You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
551 B

<?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="table.UserEntity" table="user" schema="xianshu">
<id name="userId" column="userID"/>
<property name="userName" column="userName"/>
<property name="password" column="password"/>
<property name="school" column="school"/>
<property name="sex" column="sex"/>
</class>
</hibernate-mapping>