| 123456789101112131415161718192021 |
- <?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="FileParam" table="file_param" lazy="false" >
-
- <id name="fileId" column="file_id" type="string" length="256">
- <generator class="native" />
- </id>
-
-
- <property name="name" column="name" type="string" not-null="true" length="256" />
- <property name="value" column="value" type="string" not-null="false" length="256" />
-
-
- </class>
-
- </hibernate-mapping>
|