<?xml version='1.0' encoding='UTF-8'?>
|
<!DOCTYPE hibernate-mapping PUBLIC
|
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
|
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
|
<hibernate-mapping package="com.newvideo.domain">
|
<class name="UserInfo" table="wk_video_userinfo">
|
<id name="id" column="id">
|
<generator class="native"></generator>
|
</id>
|
<property name="score" type="string"></property>
|
<property name="device" type="string"></property>
|
<property name="imei" type="string"></property>
|
<property name="mac" type="string"></property>
|
<property name="lat" type="string"></property>
|
<property name="lng" type="string"></property>
|
<property name="createtime" type="string"></property>
|
<property name="pptvppi" type="string"></property>
|
<property name="nickname" type="string"></property>
|
<property name="portrait" type="string"></property>
|
<property name="country" type="string"></property>
|
<property name="city" type="string"></property>
|
<property name="ip" type="string"></property>
|
<many-to-one name="system" column="systemid" lazy="false"></many-to-one>
|
</class>
|
|
|
|
|
|
|
</hibernate-mapping>
|