<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping package="com.zll.entity">
<class name="User" table="users">
<id name="userId" column="userid">
<generator class="native"></generator>
</id>
<property name="userName" column="username"></property>
<property name="userPwd" column="userpwd"></property>
</class>
</hibernate-mapping>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-21
  • 2022-12-23
  • 2021-12-21
  • 2022-12-23
  • 2022-12-23
  • 2021-11-16
猜你喜欢
  • 2021-04-28
  • 2021-10-02
  • 2021-10-24
  • 2021-09-29
  • 2021-06-06
相关资源
相似解决方案