1
0

Charges.hbm.xml 2.4 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  3. <hibernate-mapping package="id.co.hanoman.service.config">
  4. <class name="Charges" table="charges" lazy="false" >
  5. <id name="id" column="id" type="string" length="1024" />
  6. <property name="c1Name" column="c1_name" type="string" length="256" not-null="false" />
  7. <property name="c1Value" column="c1_value" type="java.math.BigDecimal" not-null="false" />
  8. <property name="c1Script" column="c1_script" type="string" length="1024" not-null="false" />
  9. <property name="c1Account" column="c1_account" type="string" length="64" not-null="false" />
  10. <property name="c2Name" column="c2_name" type="string" length="256" not-null="false" />
  11. <property name="c2Value" column="c2_value" type="java.math.BigDecimal" not-null="false" />
  12. <property name="c2Script" column="c2_script" type="string" length="1024" not-null="false" />
  13. <property name="c2Account" column="c2_account" type="string" length="64" not-null="false" />
  14. <property name="c3Name" column="c3_name" type="string" length="256" not-null="false" />
  15. <property name="c3Value" column="c3_value" type="java.math.BigDecimal" not-null="false" />
  16. <property name="c3Script" column="c3_script" type="string" length="1024" not-null="false" />
  17. <property name="c3Account" column="c3_account" type="string" length="64" not-null="false" />
  18. <property name="c4Name" column="c4_name" type="string" length="256" not-null="false" />
  19. <property name="c4Value" column="c4_value" type="java.math.BigDecimal" not-null="false" />
  20. <property name="c4Script" column="c4_script" type="string" length="1024" not-null="false" />
  21. <property name="c4Account" column="c4_account" type="string" length="64" not-null="false" />
  22. <property name="c5Name" column="c5_name" type="string" length="256" not-null="false" />
  23. <property name="c5Value" column="c5_value" type="java.math.BigDecimal" not-null="false" />
  24. <property name="c5Script" column="c5_script" type="string" length="1024" not-null="false" />
  25. <property name="c5Account" column="c5_account" type="string" length="64" not-null="false" />
  26. <property name="modifiedBy" column="modified_by" type="string" length="64" not-null="true" />
  27. <property name="timestamp" column="timestamp" type="java.util.Calendar" not-null="true" />
  28. </class>
  29. </hibernate-mapping>