InzBizProcess.hbm.xml 1.02 KB
Newer Older
PWF-WK01\pengwufeng committed
1 2 3 4 5 6 7 8 9 10
<?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">
	<union-subclass entity-name="com.beecode.inz.workflow.datamodel.InzBizProcess" table="inz_workflow_biz_process" extends = "com.beecode.bap.workflow.datamodel.BizProcess">
    	<tuplizer entity-mode="dynamic-map" class="com.beecode.bcp.store.hibernate.KObjectEntityTuplizer"/>
		<property name="bizObjectName" type="nstring" not-null="false">
			<column name="bizObjectName" length="200"></column>
		</property>
shiwenbo committed
11 12 13
		<property name="bizAffiliationName" type="nstring" not-null="false">
			<column name="bizAffiliationName" length="200"></column>
		</property>
PWF-WK01\pengwufeng committed
14 15 16 17 18
		<property name="triggerAction" type="nstring" not-null="false">
			<column name="triggerAction" length="200"></column>
		</property>
    </union-subclass>
</hibernate-mapping>