12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.simuwang.base.mapper.RzZhzq2ResultMapper">
- <select id="getResult" resultType="com.simuwang.base.pojo.dto.ZhzqCompetitionResultDTO">
- select strategy as strategy,
- fund_id as fundId,
- product_register_number as registerNumber,
- fund_name as fundName,
- fund_short_name as fundShortName,
- company_id as companyId,
- register_number as companyRegisterNumber,
- company_name as companyName,
- company_short_name as companyShortName,
- pre_price_date as startPriceDate,
- pre_cumulative_nav as startCumulativeNavWithdrawal,
- price_date as endPriceDate,
- cumulative_nav_withdrawal as endCumulativeNavWithdrawal,
- score as score,
- product_scale as productScale,
- ret,
- maxdown,
- calmarratio as calmarRatio,
- sharperatio as sharpeRatio,
- info_ratio as infoRation,
- excess_ret as excessRet,
- excess_maxdown as excessMaxdown,
- excess_calmarratio as excessCalmarratio
- from rz_zhzq2_res
- WHERE isvalid = 1
- </select>
- </mapper>
|