27 lines
981 B
Plaintext
27 lines
981 B
Plaintext
|
|
<?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 auto-import="false">
|
||
|
|
<class name="com.nationalelectric.greenH5.po.GreenRolePermission" table="green_role_permission">
|
||
|
|
<comment>green_role_permission</comment>
|
||
|
|
<!-- single primaryKey -->
|
||
|
|
<id name="id" type="integer">
|
||
|
|
<column name="ID">
|
||
|
|
<comment>id</comment>
|
||
|
|
</column>
|
||
|
|
<generator class="assigned"/>
|
||
|
|
</id>
|
||
|
|
|
||
|
|
<property name="roleId" type="integer" not-null="false">
|
||
|
|
<column name="ROLE_ID">
|
||
|
|
<comment>角色id</comment>
|
||
|
|
</column>
|
||
|
|
</property>
|
||
|
|
|
||
|
|
<property name="permissionId" type="integer" not-null="false">
|
||
|
|
<column name="PERMISSION_ID">
|
||
|
|
<comment>权限id</comment>
|
||
|
|
</column>
|
||
|
|
</property>
|
||
|
|
|
||
|
|
</class>
|
||
|
|
</hibernate-mapping>
|