first commit
This commit is contained in:
30
model/bin/classes/project/fund/CashToAccount.hbm.xml
Executable file
30
model/bin/classes/project/fund/CashToAccount.hbm.xml
Executable file
@@ -0,0 +1,30 @@
|
||||
<?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>
|
||||
<class name="project.fund.CashToAccount" table="T_CASHTOACCOUNT">
|
||||
<id name="id" type="java.lang.String">
|
||||
<column name="UUID" />
|
||||
<generator class="uuid.hex" />
|
||||
</id>
|
||||
<property name="partyId" type="java.lang.String">
|
||||
<column name="PARTY_ID" />
|
||||
</property>
|
||||
|
||||
<property name="cny" type="double">
|
||||
<column name="CNY" />
|
||||
</property>
|
||||
<property name="paytype" type="int">
|
||||
<column name="PAYTYPE" />
|
||||
</property>
|
||||
|
||||
<property name="itemId" type="java.lang.String">
|
||||
<column name="ITEMID" />
|
||||
</property>
|
||||
|
||||
<property name="createTime" type="timestamp">
|
||||
<column name="CREATE_TIME" />
|
||||
</property>
|
||||
|
||||
</class>
|
||||
</hibernate-mapping>
|
||||
Reference in New Issue
Block a user