Helius
2020-08-28 385eb4e47f9e2d89131f276129c1f8e6988edf23
src/main/resources/mapper/contract/ContractOrderDao.xml
@@ -83,4 +83,11 @@
        where order_no=#{orderNo}
        and order_type in (1,2) and order_status=1
    </select>
    <select id="selectWholeFeeAmountByOrderNo" resultType="java.math.BigDecimal">
        select sum(opening_fee_amount)
        from contract_order
        where order_no=#{orderNo}
        and order_type in (1,2) and order_status=1
    </select>
</mapper>