Helius
2021-04-09 a9fbfbd5dbabcad09cd06e4b07cda8c5a01183ff
src/main/resources/mapper/platform/PlatformFeeSettingDao.xml
@@ -20,5 +20,20 @@
    <select id="getFeeSettingByTypeAndSymbol" resultType="com.xcong.excoin.modules.platform.entity.PlatformFeeSettingEntity">
       select * from platform_fee_setting where  type = #{type} and symbol = #{symbol}
    </select>
    <select id="getFeeSettingsByTypeAndSymbol" resultType="com.xcong.excoin.modules.platform.entity.PlatformFeeSettingEntity">
       select * from platform_fee_setting
        <where>
          <if test="type != null  and  type  != ''">
              type = #{type}
          </if>
          <if test="symbol != null  and  symbol  != ''">
             and symbol = #{symbol}
          </if>
          <if test="lable != null  and  lable  != ''">
             and lable = #{lable}
          </if>
       </where>
    </select>
   
</mapper>