From 71b1b3615d6ba865f23e4175e0a697e40a23f8c1 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 28 Jan 2021 16:52:37 +0800 Subject: [PATCH] 20210128 --- src/main/resources/mapper/platform/TradeSettingDao.xml | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/resources/mapper/platform/TradeSettingDao.xml b/src/main/resources/mapper/platform/TradeSettingDao.xml index e0e56ba..7537a80 100644 --- a/src/main/resources/mapper/platform/TradeSettingDao.xml +++ b/src/main/resources/mapper/platform/TradeSettingDao.xml @@ -1,12 +1,12 @@ <?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.xcong.excoin.modules.coin.dao.platform.TradeSettingDao"> +<mapper namespace="com.xcong.excoin.modules.platform.dao.TradeSettingDao"> - <select id="findTradeSetting" resultType="com.xcong.excoin.modules.coin.entity.PlatformTradeSettingEntity"> + <select id="findTradeSetting" resultType="com.xcong.excoin.modules.platform.entity.PlatformTradeSettingEntity"> SELECT * FROM platform_trade_setting </select> - <select id="findSymbolSkubySymbol" resultType="com.xcong.excoin.modules.coin.entity.PlatformSymbolsSku"> + <select id="findSymbolSkubySymbol" resultType="com.xcong.excoin.modules.platform.entity.PlatformSymbolsSkuEntity"> select * from platform_symbols_sku <where> <if test="symbol!=null and symbol!=''"> @@ -15,11 +15,11 @@ </where> </select> - <select id="findAllSymbolSkubySymbol" resultType="com.xcong.excoin.modules.coin.entity.PlatformSymbolsSku"> + <select id="findAllSymbolSkubySymbol" resultType="com.xcong.excoin.modules.platform.entity.PlatformSymbolsSkuEntity"> select * from platform_symbols_sku </select> - <select id="findLeverageSetting" resultType="com.xcong.excoin.modules.coin.entity.PlatformLeverageSettingEntity"> + <select id="findLeverageSetting" resultType="com.xcong.excoin.modules.platform.entity.PlatformLeverageSettingEntity"> select * from platform_leverage_setting order by value ASC </select> -- Gitblit v1.9.1