|
@@ -38,11 +38,12 @@
|
|
|
limit #{offset},#{pageSize}
|
|
|
</select>
|
|
|
<select id="searchFundInfoList" resultType="com.simuwang.base.pojo.vo.FundInformationVO">
|
|
|
+ select * from (
|
|
|
select f.fund_id as fundId,
|
|
|
f.fund_short_name as fundShortName,
|
|
|
c.company_short_name as companyShortName,
|
|
|
f.inception_date as inceptionDate,
|
|
|
- n.last_price_date as lastPriceDate,
|
|
|
+ ifnull(n.last_price_date,'') as lastPriceDate,
|
|
|
r.nav_frequency as navFrequency,
|
|
|
r.asset_Frequency as assetFrequency,
|
|
|
r.frequency_remark as frequencyRemark
|
|
@@ -72,9 +73,9 @@
|
|
|
</if>
|
|
|
<if test="endDate != null and endDate !=''">
|
|
|
and f.inception_date <![CDATA[ <= ]]> #{endDate}
|
|
|
- </if>
|
|
|
- order by n.last_price_date desc
|
|
|
+ </if>) a
|
|
|
limit #{offset},#{pageSize}
|
|
|
+ order by a.lastPriceDate desc
|
|
|
</select>
|
|
|
|
|
|
<select id="queryFundByNameAndRegisterNumber" resultType="com.simuwang.base.pojo.dos.FundInfoDO">
|