| 123456789101112131415161718 |
- <?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.mwapp">
- <class name="SysParam" table="sys_param" lazy="false" >
- <id name="code" column="code" type="string" length="50" />
- <property name="name" column="name" type="string" not-null="true" length="50" />
- <property name="paramValue" column="param_value" type="string" not-null="true" length="256" />
- <property name="description" column="description" type="string" not-null="false" length="256" />
- <property name="modifiedBy" column="modified_by" type="string" not-null="true" length="64" />
- <property name="timestamp" column="timestamp" type="timestamp" not-null="true"/>
- </class>
-
- </hibernate-mapping>
|