| | |
| | | and t.prepayment_period = #{prepaymentPeriod} |
| | | </if> |
| | | </insert> |
| | | |
| | | <!-- 查询费用配置信息 add by wuxw 2018-07-03 --> |
| | | <select id="getFeeConfigInfo" parameterType="Map" resultType="Map"> |
| | | select t.fee_type_cd,t.fee_type_cd feeTypeCd,t.secondary_fee_type_cd,t.secondary_fee_type_cd secondaryFeeTypeCd,s.secondary_fee_type_cd_name,s.secondary_fee_type_cd_name secondaryFeeTypeCdName,t.computing_formula,t.computing_formula |
| | |
| | | <if test="feeTypeCd !=null and feeTypeCd != ''"> |
| | | , t.fee_type_cd= #{feeTypeCd} |
| | | </if> |
| | | <if test="secondaryFeeTypeCd !=null and secondaryFeeTypeCd != ''"> |
| | | , t.secondary_fee_type_cd= #{secondaryFeeTypeCd} |
| | | </if> |
| | | <if test="computingFormula !=null and computingFormula != ''"> |
| | | , t.computing_formula= #{computingFormula} |
| | | </if> |