RemindSettingsInfo.hbm.xml 2.8 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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
<?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 entity-name="com.beecode.inz.message.datamodel.RemindSettingsInfo" table="inz_common_remindsettingsinfo" >
		<tuplizer entity-mode="dynamic-map" class="com.beecode.bcp.store.hibernate.KObjectEntityTuplizer"/>
		<id name="id" type="uuid-binary" column="id" length="16">
			<generator class="uuid2" />
		</id>
		<property name="createTime" type="timestamp" not-null="false">
			<column name="create_time"></column>
		</property>
		<many-to-one name="creator" entity-name="com.beecode.bap.staff.datamodel.Staff" fetch="select">
			<column name="creator_id"  not-null="false"/>
		</many-to-one>
		<property name="modifyTime" type="timestamp" not-null="false">
			<column name="modify_time"></column>
		</property>
		<many-to-one name="modifier" entity-name="com.beecode.bap.staff.datamodel.Staff" fetch="select">
			<column name="modifier_id"  not-null="false"/>
		</many-to-one>
		<many-to-one name="org" entity-name="com.beecode.bcp.org.datamodel.Organization" fetch="select">
			<column name="org_id"  not-null="false"/>
		</many-to-one>
		<property name="billState" type="nstring" not-null="false">
			<column name="bill_state" length="100"></column>
		</property>
		<many-to-one name="bizProcess" entity-name="com.beecode.bap.workflow.datamodel.BizProcess" fetch="select">
			<column name="biz_process_id"  not-null="false"/>
		</many-to-one>
		<property name="billCode" type="nstring" not-null="false">
			<column name="bill_code" length="200"></column>
		</property>
		<many-to-one name="pic" entity-name="com.beecode.bap.staff.datamodel.Staff" fetch="select">
			<column name="pic_id"  not-null="false"/>
		</many-to-one>
		<property name="discard" type="boolean" not-null="false">
			<column name="discard"></column>
		</property>
		<property name="del" type="boolean" not-null="false">
			<column name="del"></column>
		</property>
		<property name="approveState" type="integer" not-null="false">
			<column name="approve_state"></column>
		</property>
		<property name="remindDefinitionId" type="nstring" not-null="false">
			<column name="remind_definitionid" length="200"></column>
		</property>
		<property name="biztypeName" type="nstring" not-null="false">
			<column name="biztype_name" length="200"></column>
		</property>
		<property name="triggerActions" type="nstring" not-null="false">
			<column name="trigger_actions" length="200"></column>
		</property>
		<property name="receiverInfo" type="nstring" not-null="false">
			<column name="receiver_info" length="2000"></column>
		</property>
		
	</class>
</hibernate-mapping>