📄 userinfo.hbm.xml
字号:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping SYSTEM
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" >
<hibernate-mapping>
<class name="com.cownew.phoneshow.basedata.user.UserInfo" table="T_BS_User">
<id name="id" type="string" unsaved-value="null" >
<column name="FId" sql-type="string"
not-null="true"/>
<generator class="uuid.hex"/>
</id>
<property name="userId">
<column name="FUserId" sql-type="string" not-null="true"/>
</property>
<property name="password">
<column name="FPassword" sql-type="string" not-null="true"/>
</property>
<property name="email">
<column name="FEmail" sql-type="string" not-null="true"/>
</property>
<property name="wallpaper">
<column name="FWallpaper" sql-type="string" not-null="true"/>
</property>
</class>
</hibernate-mapping>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -