zainali5120
2020-05-31 3953afaf6dab8413cd4e6312a8c1dae660254207
Merge branch 'master' of https://gitee.com/chonggaoxiao/new_excoin
1 files modified
4 ■■■■ changed files
src/main/resources/mapper/platform/PlatformFeeSettingDao.xml 4 ●●●● patch | view | raw | blame | history
src/main/resources/mapper/platform/PlatformFeeSettingDao.xml
@@ -3,7 +3,7 @@
<mapper namespace="com.xcong.excoin.modules.platform.dao.PlatformFeeSettingDao">
    <select id="getFeeSettingByTypeAndSymbolLable" resultType="com.xcong.excoin.modules.platform.entity.PlatformFeeSettingEntity">
         select * from fee_setting
         select * from platform_fee_setting
          <where>
             <if test="type != null  and  type  != ''">
                  type = #{type}
@@ -18,7 +18,7 @@
     </select>
     
     <select id="getFeeSettingByTypeAndSymbol" resultType="com.xcong.excoin.modules.platform.entity.PlatformFeeSettingEntity">
         select * from fee_setting where  type = #{type} and symbol = #{symbol}
         select * from platform_fee_setting where  type = #{type} and symbol = #{symbol}
     </select>
    
</mapper>