Statistics
| Branch: | Revision:

m2u-upass-core / resources / my / com / upass / hibernate / TbAmAppserv.hbm.xml @ 0:02300db8682b

History | View | Annotate | Download (901 Bytes)

1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
3

    
4
<hibernate-mapping>
5
        <class name="my.com.upass.pojo.AppAccessBean" table="TB_AM_APPSERV">
6
                <composite-id>
7
                        <key-property name="aappServId" column="A_APP_SERV_ID"
8
                                type="string" length="10" />
9
                        <key-many-to-one name="tbAmUser"
10
                                class="my.com.upass.pojo.UserBean" column="A_USER_ID" />
11
                </composite-id>
12
                <property name="aappServAccess1" type="string">
13
                        <column name="A_APP_SERV_ACCESS1" length="64" />
14
                </property>
15
                <property name="aappServAccess2" type="string">
16
                        <column name="A_APP_SERV_ACCESS2" length="64" />
17
                </property>
18
                <property name="aappServAuthList" type="string">
19
                        <column name="A_APP_SERV_AUTH_LIST" length="64" />
20
                </property>
21
        </class>
22
</hibernate-mapping>
23