xiaoyong931011
2020-07-30 fc5d2e8c20e82550eaf0e7ff1dc19f85d73a41bd
src/main/resources/mapper/documentary/FollowTraderProfitInfoDao.xml
@@ -2,10 +2,30 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.xcong.excoin.modules.documentary.dao.FollowTraderProfitInfoDao">
   
   <select id="selectFollowTraderProfitInfoEntity" resultType="com.xcong.excoin.modules.documentary.entity.FollowTraderProfitInfoEntity">
   <select id="selectFollowTraderProfitInfoEntity" resultType="com.xcong.excoin.modules.documentary.vo.FollowTraderProfitInfoVo">
      select * from follow_trader_profit_info 
        order by id desc
    </select>
    
   <select id="selectHistoryOrderRecords" resultType="com.xcong.excoin.modules.documentary.vo.HistoryOrderRecordsVo">
      SELECT
         symbol,
         order_type orderType,
         lever_ratio leverRatio,
         opening_price openingPrice,
         closing_price closingPrice,
         reward_ratio rewardRatio,
         opening_time openingTime,
         closing_time closingTime,
         order_no orderNo
      FROM
         contract_order
      WHERE
         member_id = #{memberId}
         and contract_type = 2
         and order_type in (3,4)
         and closing_type not in (4,5)
      order by opening_time desc
    </select>
</mapper>