|
@@ -37,15 +37,19 @@
|
|
|
</if>
|
|
|
limit #{offset},#{pageSize}
|
|
|
</select>
|
|
|
- <select id="searchFundInfoList" resultType="com.simuwang.base.pojo.vo.FundInformationVO">
|
|
|
+ <select id="searchFundInfoList" resultType="com.simuwang.base.pojo.dos.FundInformationDO">
|
|
|
select * from (
|
|
|
select f.fund_id as fundId,
|
|
|
f.fund_short_name as fundShortName,
|
|
|
- c.company_short_name as companyShortName,
|
|
|
+ f.register_number as registerNumber,
|
|
|
+ c.company_id as companyId,
|
|
|
+ c.company_name as companyName,
|
|
|
+ c.credit_code as creditCode,
|
|
|
f.inception_date as inceptionDate,
|
|
|
ifnull(n.last_price_date,'') as lastPriceDate,
|
|
|
r.nav_frequency as navFrequency,
|
|
|
r.asset_Frequency as assetFrequency,
|
|
|
+ r.valuation_Frequency as valuationFrequency,
|
|
|
r.frequency_remark as frequencyRemark
|
|
|
from PPW_EMAIL.pvn_fund_info f
|
|
|
join PPW_EMAIL.pvn_company_info c on f.trust_id = c.company_id
|
|
@@ -68,6 +72,9 @@
|
|
|
<if test="assetFrequency != null and assetFrequency !=''">
|
|
|
and r.asset_Frequency = #{assetFrequency}
|
|
|
</if>
|
|
|
+ <if test="valuationFrequency != null and valuationFrequency !=''">
|
|
|
+ and r.valuation_Frequency = #{valuationFrequency}
|
|
|
+ </if>
|
|
|
<if test="startDate != null and startDate !=''">
|
|
|
and f.inception_date <![CDATA[ >= ]]> #{startDate}
|
|
|
</if>
|
|
@@ -137,6 +144,9 @@
|
|
|
<if test="assetFrequency != null and assetFrequency !=''">
|
|
|
and r.asset_Frequency = #{assetFrequency}
|
|
|
</if>
|
|
|
+ <if test="valuationFrequency != null and valuationFrequency !=''">
|
|
|
+ and r.valuation_Frequency = #{valuationFrequency}
|
|
|
+ </if>
|
|
|
<if test="startDate != null and startDate !=''">
|
|
|
and f.inception_date <![CDATA[ >= ]]> #{startDate}
|
|
|
</if>
|