| 1234567891011121314151617181920212223 |
- <?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="DevTellerMap" table="dev_teller_map" lazy="false" >
- <id name="id" column="id" type="long">
- <generator class="native" />
- </id>
- <property name="group" column="group" type="string" not-null="true" length="64" />
- <property name="deviceId" column="device_id" type="string" not-null="true" length="256" />
- <property name="deviceName" column="device_name" type="string" not-null="true" length="256" />
- <property name="terminalId" column="terminal_id" type="string" not-null="true" length="256" />
- <property name="terminalIp" column="terminal_ip" type="string" not-null="true" length="256" />
- <property name="tellerId" column="teller_id" type="string" not-null="true" length="256" />
- <property name="ctrlUnitId" column="ctrl_unit_id" type="string" not-null="true" length="256" />
- <property name="modifiedBy" column="modified_by" type="string" not-null="true" length="64" />
- <property name="timestamp" column="timestamp" type="java.util.Calendar" not-null="true" />
- </class>
- </hibernate-mapping>
|