| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?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.log">
- <class name="DlogList" table="dlog" lazy="false" >
- <id name="id" column="id" type="long">
- <generator class="native" />
- </id>
- <many-to-one name="typeDmd" column="type" class="DlogMd" not-null="true" />
- <property name="timestamp" column="timestamp" type="java.util.Calendar" not-null="false" />
- <property name="source" column="source" type="string" length="64" not-null="false" />
- <property name="code" column="code" type="string" length="64" not-null="false" />
- <property name="v_1" column="v_1" type="string" length="256" not-null="false" />
- <property name="v_2" column="v_2" type="string" length="256" not-null="false" />
- <property name="v_3" column="v_3" type="string" length="256" not-null="false" />
- <property name="v_4" column="v_4" type="string" length="256" not-null="false" />
- <property name="v_5" column="v_5" type="string" length="256" not-null="false" />
- <property name="v_6" column="v_6" type="string" length="256" not-null="false" />
- <property name="v_7" column="v_7" type="string" length="256" not-null="false" />
- <property name="v_8" column="v_8" type="string" length="256" not-null="false" />
- <property name="v_9" column="v_9" type="string" length="256" not-null="false" />
- <property name="v_10" column="v_10" type="string" length="256" not-null="false" />
- <property name="v_11" column="v_11" type="string" length="256" not-null="false" />
- <property name="v_12" column="v_12" type="string" length="256" not-null="false" />
- <property name="v_13" column="v_13" type="string" length="256" not-null="false" />
- <property name="v_14" column="v_14" type="string" length="256" not-null="false" />
- <property name="v_15" column="v_15" type="string" length="256" not-null="false" />
- <property name="v_16" column="v_16" type="string" length="256" not-null="false" />
- <property name="v_17" column="v_17" type="string" length="256" not-null="false" />
- <property name="v_18" column="v_18" type="string" length="256" not-null="false" />
- <property name="v_19" column="v_19" type="string" length="256" not-null="false" />
- <property name="v_20" column="v_20" type="string" length="256" not-null="false" />
- <property name="v_21" column="v_21" type="string" length="256" not-null="false" />
- <property name="v_22" column="v_22" type="string" length="256" not-null="false" />
- <property name="v_23" column="v_23" type="string" length="256" not-null="false" />
- <property name="v_24" column="v_24" type="string" length="256" not-null="false" />
- <property name="v_25" column="v_25" type="string" length="256" not-null="false" />
- <property name="v_26" column="v_26" type="string" length="256" not-null="false" />
- <property name="v_27" column="v_27" type="string" length="256" not-null="false" />
- <property name="v_28" column="v_28" type="string" length="256" not-null="false" />
- <property name="v_29" column="v_29" type="string" length="256" not-null="false" />
- <property name="v_30" column="v_30" type="string" length="256" not-null="false" />
- <property name="v_31" column="v_31" type="string" length="256" not-null="false" />
- <property name="v_32" column="v_32" type="string" length="256" not-null="false" />
- <property name="v_33" column="v_33" type="string" length="256" not-null="false" />
- <property name="v_34" column="v_34" type="string" length="256" not-null="false" />
- <property name="v_35" column="v_35" type="string" length="256" not-null="false" />
- <property name="v_36" column="v_36" type="string" length="256" not-null="false" />
- <property name="v_37" column="v_37" type="string" length="256" not-null="false" />
- <property name="v_38" column="v_38" type="string" length="256" not-null="false" />
- <property name="v_39" column="v_39" type="string" length="256" not-null="false" />
- <property name="v_40" column="v_40" type="string" length="256" not-null="false" />
- </class>
- </hibernate-mapping>
|