| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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.temp">
- <class name="TempTable" table="temptable" lazy="false">
-
- <id name="temptablePk" column="temptable_pk" type="long">
- <generator class="native" />
- </id>
-
- <property name="channelFk" column="channel_fk" type="string" not-null="true" length="50" />
- <property name="a01" column="a01" type="string" not-null="false" length="100" />
- <property name="a02" column="a02" type="string" not-null="false" length="100" />
- <property name="a03" column="a03" type="string" not-null="false" length="100" />
- <property name="a04" column="a04" type="string" not-null="false" length="100" />
- <property name="a05" column="a05" type="string" not-null="false" length="100" />
- <property name="a06" column="a06" type="string" not-null="false" length="100" />
- <property name="a07" column="a07" type="string" not-null="false" length="100" />
- <property name="a08" column="a08" type="string" not-null="false" length="100" />
- <property name="a09" column="a09" type="string" not-null="false" length="100" />
- <property name="a10" column="a10" type="string" not-null="false" length="100" />
- <property name="a11" column="a11" type="string" not-null="false" length="100" />
- <property name="a12" column="a12" type="string" not-null="false" length="100" />
- <property name="a13" column="a13" type="string" not-null="false" length="100" />
- <property name="a14" column="a14" type="string" not-null="false" length="100" />
- <property name="a15" column="a15" type="string" not-null="false" length="100" />
- <property name="a16" column="a16" type="string" not-null="false" length="100" />
- <property name="a17" column="a17" type="string" not-null="false" length="100" />
- <property name="a18" column="a18" type="string" not-null="false" length="100" />
- <property name="a19" column="a19" type="string" not-null="false" length="100" />
- <property name="a20" column="a20" type="string" not-null="false" length="100" />
- <property name="a21" column="a21" type="string" not-null="false" length="100" />
- <property name="a22" column="a22" type="string" not-null="false" length="100" />
- <property name="a23" column="a23" type="string" not-null="false" length="100" />
- <property name="a24" column="a24" type="string" not-null="false" length="100" />
- <property name="a25" column="a25" type="string" not-null="false" length="100" />
- <property name="a26" column="a26" type="string" not-null="false" length="70" />
- <property name="a27" column="a27" type="string" not-null="false" length="70" />
- <property name="a28" column="a28" type="string" not-null="false" length="70" />
- <property name="a29" column="a29" type="string" not-null="false" length="70" />
- <property name="a30" column="a30" type="string" not-null="false" length="70" />
- <property name="a31" column="a31" type="string" not-null="false" length="70" />
- <property name="a32" column="a32" type="string" not-null="false" length="70" />
- <property name="a33" column="a33" type="string" not-null="false" length="70" />
- <property name="a34" column="a34" type="string" not-null="false" length="70" />
- <property name="a35" column="a35" type="string" not-null="false" length="70" />
- <property name="a36" column="a36" type="string" not-null="false" length="70" />
- <property name="a37" column="a37" type="string" not-null="false" length="70" />
- <property name="a38" column="a38" type="string" not-null="false" length="70" />
- <property name="a39" column="a39" type="string" not-null="false" length="70" />
- <property name="a40" column="a40" type="string" not-null="false" length="70" />
- <property name="insertDate" column="insertdate" type="timestamp" not-null="true"/>
- </class>
-
- </hibernate-mapping>
|