📄 c048735c0b2e001d141adb233f2e4e02
字号:
<?xml version="1.0" encoding="gb2312"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class lazy="false" table="Stock" name="com.qrsx.qrsxcrm.model.Stock">
<!--id的产生方式是uuid.hex-->
<id name="id" column="id">
<generator class="uuid.hex"/>
</id>
<property name="stockId" column="stockId" not-null="false"/>
<property name="createDate" column="createDate" not-null="false"/>
<property name="amount" column="amount" type="double" not-null="false"/>
<property name="payDate" column="payDate" not-null="false"/>
</class>
</hibernate-mapping>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -