`

hibernate配置文件管理父子继承关系

阅读更多
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
	"-//Hibernate/Hibernate Mapping DTD//EN"
	"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >

<hibernate-mapping package="com.nstc.fbcm.model">
	<class name="FbBusiness" table="FB_BUSINESS">
		<id
			column="BID"
			name="Bid"
			type="integer"
		>
			<generator class="assigned" />
		</id>
		<property
			column="AMOUNT"
			length="15"
			name="Amount"
			not-null="true"
			type="big_decimal"
		 />
		 
		<property
			column="AMOUNT1"
			length="15"
			name="AmountTotal"
			not-null="true"
			type="big_decimal"
		 />
		<property
			column="STATE"
			length="22"
			name="State"
			not-null="true"
			type="integer"
		 />
		<property
			column="COMPLEXCODE"
			length="512"
			name="Complexcode"
			not-null="false"
			type="string"
		 />
		<property
			column="SUB_STATE"
			length="22"
			name="SubState"
			not-null="false"
			type="integer"
		 />
		<property
			column="SIGN_DATE"
			length="7"
			name="SignDate"
			not-null="false"
			type="date"
		 />
		<property
			column="CREATE_TIME"
			length="7"
			name="CreateTime"
			not-null="true"
			type="java.util.Date"  
		 />
		<property
			column="CONTRACT_NO"
			length="32"
			name="ContractNo"
			not-null="true"
			type="string"
		 />
		<property
			column="INPUTOR"
			length="100"
			name="Inputor"
			not-null="false"
			type="string"
		 />
		 <property
			column="INPUTOR_ID"
			length="22"
			name="InputorId"
			not-null="false"
			type="integer"
		 />
		 <property
			column="BRNO"
			length="32"
			name="BrNo"
			not-null="false"
			type="string"
		 />
		<property
			column="LAST_UPDATE_TIME"
			length="7"
			name="LastUpdateTime"
			not-null="false"
			type="java.util.Date"
		 />
		<property
			column="APPROVE_MEMO"
			length="1024"
			name="ApproveMemo"
			not-null="false"
			type="string"
		 />
		<property
			column="START_DATE"
			length="7"
			name="StartDate"
			not-null="true"
			type="date"
		 />
		<many-to-one
			class="com.nstc.fbcc.model.CorporationPO"
			name="Debtor"
			not-null="true"
		>
			<column name="DEBTOR" />
		</many-to-one>
		 
		 
		<property
			column="REMARK"
			length="1024"
			name="Remark"
			not-null="false"
			type="string"
		 />
		<property
			column="MATURITY"
			length="7"
			name="Maturity"
			not-null="true"
			type="date"
		 />

		<many-to-one
			class="FbCurrency"
			name="Currency"
			not-null="true"
		>
			<column name="CURRENCY_NO" />
		</many-to-one>
		<many-to-one
			class="FbBizType"
			name="BizType"
			not-null="true"
		>
			<column name="BIZ_TYPE" />
		</many-to-one>
		
		<map name="Properties" 
			table="FB_BUSINESS_PROPERTIES" 
			lazy="false" 
			cascade="none" 
			inverse="true" 
		>
			<key column="BID"/>
			<index column="PROP_KEY" type="string"/>
			<composite-element class="FbBussProperty">
				<property
					column="PROP_VALUE"
					length="256"
					name="PropValue"
					not-null="true"
					type="string"
		 		/>
				<property
					column="PROP_NAME"
					length="128"
					name="PropName"
					not-null="false"
					type="string"
		 		/>
   			</composite-element>
		</map> 

		<joined-subclass name="FbSuperContract" table="FB_SUPER_CONTRACTS">
			<key column="BID" />

			<property
				column="REFILL_METHOD"
				length="22"
				name="RefillMethod"
				not-null="true"
				type="integer"
			 />
			<property
				column="MULTI_CURRENCY"
				length="22"
				name="MultiCurrency"
				not-null="true"
				type="boolean"
			 />
			<property
				column="BIZ_TYPE_ACUITY"
				length="22"
				name="BizTypeAcuity"
				not-null="true"
				type="integer"
			 />
			<property
				column="LATEST_START_DATE"
				length="7"
				name="LatestStartDate"
				not-null="false"
				type="date"
			 />
			<property
				column="AMOUNT_MODE"
				length="22"
				name="AmountMode"
				not-null="true"
				type="integer"
			 />
			<property
				column="DATE_MODE"
				length="22"
				name="DateMode"
				not-null="true"
				type="integer"
			 />
			<property
				column="FC_AMOUNT"
				length="15"
				name="FcAmount"
				not-null="false"
				type="big_decimal"
			 />
			 <property
				column="RATE"
				length="10"
				name="Rate"
				not-null="false"
				type="big_decimal"
			 />
			 <property
				column="ISFLOATRATE"
				length="22"
				name="IsFloatRate"
				not-null="false"
				type="integer"
			 />
			 <property
				column="FREEDAY"
				length="4"
				name="FreeDay"
				not-null="false"
				type="string"
			 />
			 <property
				column="FREESTARTDATE"
				length="7"
				name="FreeStartDate"
				not-null="false"
				type="java.util.Date"
			 />
			 <property
				column="FREEENDDATE"
				length="7"
				name="FreeEndDate"
				not-null="false"
				type="java.util.Date"
			 />
			 <property
				column="SURETY_CODE"
				length="22"
				name="SuretyCode"
				not-null="false"
				type="string"
			 />
			 <property
				column="SUPPLYBANK"
				length="22"
				name="SupplyBank"
				not-null="false"
				type="integer"
			 />
			 <property
				column="FINANCETERM"
				length="22"
				name="FinanceTerm"
				not-null="false"
				type="integer"
			 />

			<set
				cascade="delete-orphan"      
				inverse="true"
				lazy="false"
				name="SuperItems"
			>
				<key column="BID" />
				<one-to-many class="FbCreditItem" />
			</set>

			<set
				cascade="delete-orphan"      
				inverse="true"
				lazy="false"
				name="ManageLogs"
			>
				<key column="SUPER_BID" />
				<one-to-many class="FbManageUseLog" />
			</set>

			<set
				cascade="delete-orphan"      
				inverse="true"
				lazy="false"
				name="GroupBanks"
			>
				<key column="SUPER_BID" />
				<one-to-many class="FbGroupBank" />
			</set>
			
			<set
				inverse="true"
				lazy="true"
				name="FbContracts"
				table="FB_SUPER_MAP"
			>
				<key column="SUPER_BID" />
				<many-to-many class="FbContract" column="BID" />
			</set>

		</joined-subclass>
		<joined-subclass name="FbContract" table="FB_CONTRACTS">
			<key column="BID" />

			<property
				column="IN_SUIT"
				length="22"
				name="InSuit"
				not-null="true"
				type="integer"
			 />
			 <property
				column="ISSPLIT"
				length="22"
				name="isSplit"
				not-null="false"
				type="integer"
			 />
			 <property
				column="FINANCETERM"
				length="22"
				name="FinanceTerm"
				not-null="false"
				type="integer"
			 />
			 <property
				column="SELLMODE"
				length="22"
				name="SellMode"
				not-null="false"
				type="integer"
			 />
			 <property
				column="BUYOUT"
				length="22"
				name="BuyOut"
				type="integer"
			 />
			<property
				column="MAIN_CONTRACT_AMOUNT"
				length="15"
				name="MainContractAmount"
				not-null="false"
				type="big_decimal"
			 />
			<property
				column="MAIN_CURRENCY"
				length="15"
				name="MainCurrency"
				not-null="false"
				type="string"
			 />
			<property
				column="PROPORTION"
				length="15"
				name="Proportion"
				not-null="false"
				type="big_decimal"
			 />
			<property
				column="DESCRIPTION"
				length="2000"
				name="Description"
				not-null="false"
				type="string"
			 />
			<property
				column="GUARANTEE_TYPE"
				length="22"
				name="GuaranteeType"
				not-null="false"
				type="integer"
			 />
			<property
				column="GUARANTEE_USE"
				length="2000"
				name="GuaranteeUse"
				not-null="false"
				type="string"
			 />
			<property
				column="PAYMENT_TERM"
				length="2000"
				name="PaymentTerm"
				not-null="false"
				type="string"
			 />
			<property
				column="NORMRATE_RULE"
				length="22"
				name="NormrateRule"
				not-null="false"
				type="integer"
			 />
			<property
				column="NORMRATE_RULE_MONTH"
				length="22"
				name="NormrateRuleMonth"
				not-null="false"
				type="integer"
			 />
			<property
				column="NORMRATE_RULE_DAY"
				length="22"
				name="NormrateRuleDay"
				not-null="false"
				type="integer"
			 />
			 <property
				column="SURETY_TYPES"
				length="200"
				name="SuretyTypes"
				type="string"
			 />
			 <property
				column="OP_SURETY_TYPES"
				length="200"
				name="OpSuretyTypes"
				type="string"
			 />
			 <property
				column="OP_SURETY_REMARK"
				length="1000"
				name="OpSuretyRemark"
				type="string"
			 />
			 <property
				column="RISK_EXPOSURE"
				length="1000"
				name="RiskExposure"
				type="string"
			 />
			<property
				column="LOAN_TYPE"
				length="22"
				name="LoanType"
				not-null="false"
				type="integer"
			 />
			 <property
				column="SUPPLY_BANK_NAME"
				length="64"
				name="SupplyBankName"
				not-null="false"
				type="string"
			 />
			 <component name="InterestParam" class="FbInterestParam" >
				<property
					column="REPAY_CAPITAL"
					length="22"
					name="RepayCapital"
					not-null="true"
					type="integer"
			 	/>
				<property
					column="INTREST_PERIOD"
					length="22"
					name="IntrestPeriod"
					not-null="true"
					type="integer"
				 />
				<property
					column="INTREST_DAY"
					length="22"
					name="IntrestDay"
					not-null="false"
					type="integer"
			 	/>
				<property
					column="PERIOD_BASE"
					length="22"
					name="PeriodBase"
					not-null="true"
					type="integer"
			 	/>
				<property
					column="PERIOD_FREEDAY"
					length="4"
					name="PeriodFreeday"
					not-null="false"
					type="string"
			 	/>
				<property
					column="ENTIRE_FREEDAY"
					length="4"
					name="EntireFreeday"
					not-null="false"
					type="string"
			 	/>
				<property
					column="PERIOD_TYPE"
					length="22"
					name="PeriodType"
					not-null="false"
					type="string"
			 	/>
			 </component>
		<many-to-one
			class="com.nstc.fbcc.model.CorporationPO"
			name="Warrantee"
			not-null="false"
		>
			<column name="WARRANTEE" />
		</many-to-one>

		<many-to-one
			class="com.nstc.fbcm.model.FbGroupBank"
			name="GroupBank"
			not-null="false"
		>
			<column name="GROUPBANK" />
		</many-to-one>

			 
			<property
				column="HANDLE_METHOD"
				length="22"
				name="HandleMethod"
				not-null="false"
				type="integer"
			 />
		<many-to-one
			class="com.nstc.fbcc.model.CorporationPO"
			name="Consigner"
			not-null="false"
		>
			<column name="CONSIGNER" />
		</many-to-one>
			<property
				column="FLOATING_FREQ"
				length="22"
				name="FloatingFreq"
				not-null="false"
				type="integer"
			 />
			<property
				column="SURETY_RATE"
				length="8"
				name="SuretyRate"
				not-null="false"
				type="big_decimal"
			 />
			<property
				column="REPAY_CHANNEL"
				length="2"
				name="RepayChannel"
				not-null="false"
				type="string"
			 />
			<property
				column="EX_RATE"
				length="12"
				name="ExRate"
				not-null="false"
				type="big_decimal"
			 />
			<property
				column="RECTIFY_RATE"
				length="8"
				name="RectifyRate"
				not-null="false"
				type="big_decimal"
			 />
			<property
				column="MULTI_LENDING"
				length="22"
				name="MultiLending"
				not-null="true"
				type="boolean"
			 />
			<property
				column="IS_FLOATING_RATE"
				length="22"
				name="IsFloatingRate"
				not-null="true"
				type="boolean"
			 />
			<property
				column="CORRELATION_NUM2"
				length="32"
				name="CorrelationNum2"
				not-null="false"
				type="string"
			 />
			<property
				column="OLD_CONTARCT_NO"
				length="32"
				name="OldContarctNo"
				not-null="false"
				type="string"
			 />
			<property
				column="FLOATING_METHOD"
				length="1"
				name="FloatingMethod"
				not-null="false"
				type="string"
			 />
		<many-to-one
			class="com.nstc.fbcc.model.CorporationPO"
			name="Broker"
			not-null="false"
		>
			<column name="BROKER" />
		</many-to-one>
		<many-to-one
			class="com.nstc.fbcc.model.UniversalCodePO"
			name="Beneficiary"
			not-null="false"
		>
			<column name="BENEFICIARY" />
		</many-to-one>

			<property
				column="FIVE_LEVEL"
				length="22"
				name="FiveLevel"
				not-null="false"
				type="integer"
			 />

			<property
				column="NOT_WITHHOLDING"
				length="22"
				name="NotWithholding"
				not-null="true"
				type="integer"
			 />

			<property
				column="DISCOUNT_MODE"
				length="22"
				name="DiscountMode"
				not-null="false"
				type="integer"
			 />
			<property
				column="CORRELATION_NUM1"
				length="32"
				name="CorrelationNum1"
				not-null="false"
				type="string"
			 />
			 
			<property
				column="CYC_LOAN"
				length="22"
				name="CycLoan"
				not-null="true"
				type="boolean"
			 />
			 
			 <property
				column="PAGENUM"
				length="22"
				name="PageNum"
				not-null="false"
				type="integer"
			 />

			 <property
				column="SELF_SUPPORT"
				length="22"
				name="SelfSupport"
				type="integer"
			 />

			 <property
				column="FIX_PLAN"
				length="22"
				name="FixPlan"
				not-null="false"
				type="integer"
			 />

			 <property
				column="RMSRATETYPE"
				length="22"
				name="RmsRateType"
				not-null="false"
				type="integer"
			 />

			 <property
				column="NORMRATEID"
				length="22"
				name="NormId"
				not-null="false"
				type="integer"
			 />
			 
			 <property
				column="NORMRATE_METHOD"
				length="22"
				name="NormMethod"
				not-null="false"
				type="integer"
			 />
			 
			 <property
				column="NORMRATE_FALG"
				length="22"
				name="NormFalg"
				not-null="false"
				type="big_decimal"
			 />
			<set
				inverse="true"
				lazy="false"
				name="IntrestRate"
				order-by="RATE_TYPE asc, EFT_DATE desc"
			>
				<key column="BID" />
				<one-to-many class="FbIntrestRate" />
			</set>
			
			<set
				inverse="true"
				lazy="true"
				name="SpecialActions"
			>
				<key column="BID" />
				<one-to-many class="FbSpecialAction" />
			</set>
			<set
				inverse="true"
				lazy="true"
				name="Lawsuits"
			>
				<key column="BID" />
				<one-to-many class="FbLawsuit" />
			</set>

			<set
				cascade="delete"      
				inverse="true"
				lazy="false"
				name="DiscountNotes"
			>
				<key column="BID" />
				<one-to-many class="FbDiscountNote" />
			</set>
			<set
				inverse="true"
				lazy="true"
				name="FivelevelLogs"
			>
				<key column="BID" />
				<one-to-many class="FbFivelevelLog" />
			</set>
			<set
				inverse="true"
				lazy="false"
				name="FbBaoGoods"
			>
				<key column="BID" />
				<one-to-many class="FbBaoGoods" />
			</set>
			<set
				inverse="true"
				lazy="false"
				name="FbLedgers"
			>
				<key column="BID" />
				<one-to-many class="FbLedger" />
			</set>
            <map name="Accounts" 
            	table="FB_ACCOUNTS" 
            	lazy="false" 
            	cascade="none"  
            	inverse="true" 
            >
               <key column="BID"/>
               <index column="ACCOUNT_TYPE" type="string"/>
               <element column="ACCOUNT_NO" type="string" not-null="false"/>
            </map>   
			<set
				cascade="save-update"     
				inverse="true"
				lazy="false"
				name="Intentions"
			>
				<key column="BID" />
				<one-to-many class="FbIntention" />
			</set>
			<set
				cascade="none" 
				lazy="true"
				name="SuperContracts"
				table="FB_SUPER_MAP"
			>
				<key column="BID" />
				<many-to-many class="FbSuperContract" column="SUPER_BID" />
			</set>
<!--
		<set
			cascade="none" 
			inverse="true"
			lazy="false"
			name="ChargeRates"
		>
			<key column="BID" />
			<one-to-many class="FbChargeRate" />
		</set>
-->		
			<set
				inverse="true"
				lazy="false"
				name="Lendings"
				order-by="BID asc, START_DATE asc"
			>
				<key column="BID" />
				<one-to-many class="FbLending" />
			</set>
			<set
				inverse="true"
				lazy="true"
				name="Plans"
				order-by="BID asc, PLAN_DATE asc"
			>
				<key column="BID" />
				<one-to-many class="FbPlan" />
			</set>
			<set
				inverse="true"
				lazy="true"
				name="ChargeLogs"
				order-by="BID asc, CHARGE_DATE asc"
			>
				<key column="BID" />
				<one-to-many class="FbChargeLog" />
			</set>
		</joined-subclass>
	</class>
</hibernate-mapping>

 

分享到:
评论

相关推荐

    MongoDB分片集群搭建教程:副本集创建与数据分片

    内容概要:本文提供了详细的MongoDB分片集群的搭建指导,涵盖了从环境准备、配置文件编写、副本集的建立、主节点的选择、配置服务器和数据分片服务器的配置到最后的路由节点的搭建与操作整个流程,以及对数据库的哈希与范围两种分片策略的应用介绍和具体命令执行。 适合人群:熟悉NoSQL数据库概念并对MongoDB有一定了解的技术人员,尤其是在大型数据管理和分布式数据库架构设计中有需求的开发者。 使用场景及目标:帮助技术人员掌握构建高效能、高可用性的MongoDB分片集群的方法,适用于处理大规模、实时性强的数据存储与读取场景。 其他说明:文中通过实例演示了每个步骤的具体操作方法,便于跟随文档实操,同时也介绍了可能遇到的问题及其解决方案,如在没有正确配置的情况下试图写入数据时出现错误等情况的处理。

    CPPC++_嵌入式硬件的物联网解决方案blinker库与Arduino ESP8266 ESP32一起工作.zip

    CPPC++_嵌入式硬件的物联网解决方案blinker库与Arduino ESP8266 ESP32一起工作

    CPPC++_逆向调用QQ Mojo IPC与WeChat XPlugin.zip

    CPPC++_逆向调用QQ Mojo IPC与WeChat XPlugin

    CPPC++_现代活动指标.zip

    CPPC++_现代活动指标

    CPPC++_Xournal是一款手写笔记软件,支持PDF注释,使用C语言编写,支持GTK3,支持Linux,如Ubu.zip

    CPPC++_Xournal是一款手写笔记软件,支持PDF注释,使用C语言编写,支持GTK3,支持Linux,如Ubu

    基于SSM学生实习管理系统前台小程序与后台管理系统开发实践

    资源概述: 本资源提供了一套完整的学生实习管理系统解决方案,涵盖了前台小程序页面与后台管理系统两大模块。前台小程序页面设计简洁直观,用户可根据不同身份(学生或企业)进行登录。学生用户能够方便地浏览并投递感兴趣的实习岗位,而企业用户则能轻松发布实习信息,吸引优秀人才。后台管理系统功能全面,包括个人中心、首页、学生管理、教师管理、企业管理、招聘管理、评分管理以及实习管理等多个方面,为管理员提供了强大的数据管理和操作工具。 技术栈亮点: SSM框架:系统后台采用Spring、Spring MVC和MyBatis Plus(简称SSM)作为核心开发框架,确保了系统的稳定性、可扩展性和可维护性。Spring作为控制反转(IoC)和面向切面编程(AOP)的容器,为系统提供了强大的业务逻辑处理能力;Spring MVC则负责处理Web请求和响应,实现了前后端的分离;MyBatis Plus作为持久层框架,简化了数据库操作,提高了开发效率。 MySQL数据库:系统采用MySQL作为数据库存储解决方案,支持大数据量的存储和高效查询。 如有侵权请联系我删除,谢谢

    微服务闪聚支付项目.zip

    微服务闪聚支付项目

    Rust 与 Java 互调实战示例

    博客链接 https://blog.csdn.net/weixin_47560078/article/details/143714557 文章从原理介绍出发,实现了 Rust 与 Java 的互调。利用 JNI 技术,可以充分发挥 Rust 的性能优势,同时保持 Java 的跨平台特性。这种技术组合适用于对性能要求较高的应用场景,如图像处理、数据分析和系统级编程等。

    CPPC++_这是我翻译的艾根中文文档.zip

    cppc++

    Matlab实现斑马优化算法ZOA-TCN-Multihead-Attention多输入单输出回归预测算法研究.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    Matlab实现雪融优化算法SAO-TCN-Multihead-Attention多输入单输出回归预测算法研究.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    分布式事务lcn.zip

    分布式事务lcn

    基于Simulink的正弦波PWM技术和三次谐波注入PWM技术研究.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。

    【风电功率预测】基于BiTCN的风电功率多变量输入预测研究附Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。

    CPPC++_这是由一块迷你带OV2640双DRV8833驱动TypeC接口PSRAM的ESP32PicoD4开发板驱.zip

    cppc++

    JAVA安卓手机与电脑的socket通信源码数据库 其他源码类型 WinForm

    安卓手机与电脑的socket通信源码

    Anaconda:JupyterNotebook使用教程.docx

    Anaconda:JupyterNotebook使用教程.docx

    Amazon S3:S3静态网站托管教程.docx

    Amazon S3:S3静态网站托管教程.docx

    Python商品销售数据分析可视化项目源码(期末大作业).zip

    Python商品销售数据分析可视化项目源码(期末大作业).zip,个人经导师指导并认可通过的98分大作业设计项目。主要针对计算机相关专业的正在做期末大作业设计的学生和需要项目实战练习的学习者,可作为课程设计、期末大作业,代码资料完整下载可用。 Python商品销售数据分析可视化项目源码(期末大作业).zip,个人经导师指导并认可通过的98分大作业设计项目。主要针对计算机相关专业的正在做期末大作业设计的学生和需要项目实战练习的学习者,可作为课程设计、期末大作业,代码资料完整下载可用。Python商品销售数据分析可视化项目源码(期末大作业).zip,个人经导师指导并认可通过的98分大作业设计项目。主要针对计算机相关专业的正在做期末大作业设计的学生和需要项目实战练习的学习者,可作为课程设计、期末大作业,代码资料完整下载可用。Python商品销售数据分析可视化项目源码(期末大作业).zip,个人经导师指导并认可通过的98分大作业设计项目。主要针对计算机相关专业的正在做期末大作业设计的学生和需要项目实战练习的学习者,可作为课程设计、期末大作业,代码资料完整下载可用。Python商品销售数据分析

    CPPC++_wechathookWeChatApi微信Api微信hook微信接口python微信接口java微信Ap.zip

    CPPC++_wechathookWeChatApi微信Api微信hook微信接口python微信接口java微信Ap

Global site tag (gtag.js) - Google Analytics