|
@@ -158,12 +158,15 @@
|
|
|
join PPW_EMAIL.pvn_fund_info info on info.trust_id=c.company_id
|
|
|
where info.fund_id=#{fundId} and info.isvalid=1 and c.isvalid=1
|
|
|
</select>
|
|
|
- <select id="getInceptionDateByFundId" resultType="java.lang.String" parameterType="java.lang.String">
|
|
|
- select inception_date from PPW_EMAIL.pvn_fund_info where fund_id=#{fundId} and isvalid=1
|
|
|
+ <select id="getLiquidateDateByFundId" resultType="java.lang.String" parameterType="java.lang.String">
|
|
|
+ select liquidate_date from PPW_EMAIL.pvn_fund_info where fund_id=#{fundId} and isvalid=1
|
|
|
</select>
|
|
|
<select id="getFundIdByCompanyId" resultType="java.lang.String" parameterType="java.lang.String">
|
|
|
select info.fund_id from PPW_EMAIL.pvn_fund_info info join PPW_EMAIL.pvn_company_info c on info.trust_id=c.company_id
|
|
|
where info.isvalid=1 and c.isvalid=1 and c.company_id=#{companyId}
|
|
|
</select>
|
|
|
+ <select id="getInceptionDateByFundId" resultType="java.lang.String" parameterType="java.lang.String">
|
|
|
+ select inception_date from PPW_EMAIL.pvn_fund_info where fund_id=#{fundId} and isvalid=1
|
|
|
+ </select>
|
|
|
|
|
|
</mapper>
|