ttest.hbm.xml.svn-base

来自「菲律宾的一个大学的图书管理系统 spring+hibernate+veloci」· SVN-BASE 代码 · 共 21 行

SVN-BASE
21
字号
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
    
<hibernate-mapping>

	<class name="biz.bluesky.pts.model.TTest" table="test">
		<id name="testId" type="int" unsaved-value="0" column="testid" >
      		<generator class="increment"/>
   		</id>
   		
   		<property name="teacherId" column="teacherid" type="int" />
   		<property name="levelId" column="levelid" type="int" />
   		<property name="streamId" column="streamid" type="int" />
   		<property name="subjectId" column="subjectid" type="int" />
   		<property name="type" column="type" type="java.lang.String" />
 		<property name="date" column="date" type="java.sql.Date" />
 		<property name="hps" column="hps" type="int" />  		

   		
	</class>
</hibernate-mapping>

⌨️ 快捷键说明

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