OperationTeam.hbm.xml 1.12 KB
Newer Older
PWF-WK01\pengwufeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?xml version="1.0" encoding="UTF-8"?>
    <hibernate-mapping xmlns="http://www.hibernate.org/xsd/hibernate-mapping"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.hibernate.org/xsd/hibernate-mapping
        http://www.hibernate.org/xsd/hibernate-mapping/hibernate-mapping-4.0.xsd">
    <class name="com.beecode.inz.basis.team.entity.OperationTeam" table="inz_basis_team_operation_team">
        <id name="id" type="uuid-binary" column="id" length="16">
        	<generator class="uuid2" />
        </id>
        <property name="parentId" type="uuid-binary" >
            <column name="parent_id"  not-null="false" length="16"/>
        </property>
        <property name="name" type="nstring" not-null="false">
            <column name="name" length="50"></column>
        </property>
        <property name="title" type="nstring" not-null="false">
            <column name="title" length="50"></column>
        </property>
        <property name="project" type="nstring" not-null="false">
            <column name="project" length="200"></column>
        </property>
    </class>
</hibernate-mapping>