You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
716 B

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="com.sothr.imagetools.engine.dto.ImageHashDTO" table="ImageHash">
<meta attribute="class-description">
This class contains the image hashes
</meta>
<id name="id" type="int" column="id">
<generator class="native"/>
</id>
<property name="ahash" column="ahash" type="long"/>
<property name="dhash" column="dhash" type="long"/>
<property name="phash" column="phash" type="long"/>
<property name="md5" column="md5" type="string"/>
</class>
</hibernate-mapping>