1
0

ReconFtp.hbm.xml 1.4 KB

123456789101112131415161718192021222324252627
  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.rekon">
  4. <class name="ReconFtp" table="reconftp" lazy="false" >
  5. <id name="reconFtpPk" column="reconftp_pk" type="long">
  6. <generator class="native" />
  7. </id>
  8. <property name="ftpType" column="ftptype" type="integer" not-null="false"/>
  9. <property name="ftpIp" column="ftpip" type="string" not-null="false" length="255"/>
  10. <property name="ftpFolder" column="ftpfolder" type="string" not-null="false" length="255"/>
  11. <property name="ftpFileName" column="ftpfilename" type="string" not-null="false" length="255"/>
  12. <property name="ftpUserId" column="ftpuserid" type="string" not-null="false" length="255"/>
  13. <property name="ftpPassword" column="ftppassword" type="string" not-null="false" length="255"/>
  14. <property name="ftpPort" column="ftpport" type="integer" not-null="false"/>
  15. <many-to-one name="reconActionFk" column="reconaction_fk" class="ReconAction" not-null="false"/>
  16. <property name="ftpLocation" column="ftplocation" type="integer" not-null="false"/>
  17. <property name="modifiedBy" column="modified_by" type="string" not-null="true" length="64" />
  18. <property name="timestamp" column="timestamp" type="timestamp" not-null="true"/>
  19. </class>
  20. </hibernate-mapping>