| 12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
- <hibernate-mapping package="id.co.hanoman.service.config">
- <class name="Charges" table="charges" lazy="false" >
- <id name="id" column="id" type="string" length="1024" />
- <property name="c1Name" column="c1_name" type="string" length="256" not-null="false" />
- <property name="c1Value" column="c1_value" type="java.math.BigDecimal" not-null="false" />
- <property name="c1Script" column="c1_script" type="string" length="1024" not-null="false" />
- <property name="c1Account" column="c1_account" type="string" length="64" not-null="false" />
- <property name="c2Name" column="c2_name" type="string" length="256" not-null="false" />
- <property name="c2Value" column="c2_value" type="java.math.BigDecimal" not-null="false" />
- <property name="c2Script" column="c2_script" type="string" length="1024" not-null="false" />
- <property name="c2Account" column="c2_account" type="string" length="64" not-null="false" />
- <property name="c3Name" column="c3_name" type="string" length="256" not-null="false" />
- <property name="c3Value" column="c3_value" type="java.math.BigDecimal" not-null="false" />
- <property name="c3Script" column="c3_script" type="string" length="1024" not-null="false" />
- <property name="c3Account" column="c3_account" type="string" length="64" not-null="false" />
- <property name="c4Name" column="c4_name" type="string" length="256" not-null="false" />
- <property name="c4Value" column="c4_value" type="java.math.BigDecimal" not-null="false" />
- <property name="c4Script" column="c4_script" type="string" length="1024" not-null="false" />
- <property name="c4Account" column="c4_account" type="string" length="64" not-null="false" />
- <property name="c5Name" column="c5_name" type="string" length="256" not-null="false" />
- <property name="c5Value" column="c5_value" type="java.math.BigDecimal" not-null="false" />
- <property name="c5Script" column="c5_script" type="string" length="1024" not-null="false" />
- <property name="c5Account" column="c5_account" type="string" length="64" not-null="false" />
- <property name="modifiedBy" column="modified_by" type="string" length="64" not-null="true" />
- <property name="timestamp" column="timestamp" type="java.util.Calendar" not-null="true" />
- </class>
- </hibernate-mapping>
|