From 0290652dcced4d31540555abd7adf6e30cdbe29e Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 28 May 2020 14:52:38 +0800
Subject: [PATCH] 20200528  代码提交

---
 src/main/java/com/xcong/excoin/modules/platform/entity/PlatformLeverageSettingEntity.java |    2 +-
 src/main/java/com/xcong/excoin/modules/coin/service/impl/OrderCoinServiceImpl.java        |    6 +++---
 src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java             |    2 +-
 src/main/java/com/xcong/excoin/modules/platform/dao/CnyUsdtExchangeDao.java               |    2 +-
 src/main/java/com/xcong/excoin/modules/platform/entity/PlatformTradeSettingEntity.java    |    2 +-
 src/main/java/com/xcong/excoin/modules/platform/dao/TradeSettingDao.java                  |    8 ++++----
 src/main/java/com/xcong/excoin/modules/platform/entity/PlatformSymbolsSku.java            |    2 +-
 7 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java b/src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java
index 89e583b..719b6a8 100644
--- a/src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java
+++ b/src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java
@@ -13,7 +13,6 @@
 import com.xcong.excoin.common.enumerates.MemberWalletCoinEnum;
 import com.xcong.excoin.common.response.Result;
 import com.xcong.excoin.modules.coin.dao.MemberAccountMoneyChangeDao;
-import com.xcong.excoin.modules.coin.dao.platform.CnyUsdtExchangeDao;
 import com.xcong.excoin.modules.coin.entity.CnyUsdtExchange;
 import com.xcong.excoin.modules.coin.entity.MemberAccountMoneyChange;
 import com.xcong.excoin.modules.coin.parameter.vo.MemberAccountMoneyChangeInfoVo;
@@ -28,6 +27,7 @@
 import com.xcong.excoin.modules.member.entity.MemberWalletAgentEntity;
 import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity;
 import com.xcong.excoin.modules.member.entity.MemberWalletContractEntity;
+import com.xcong.excoin.modules.platform.dao.CnyUsdtExchangeDao;
 import com.xcong.excoin.utils.MessageSourceUtils;
 import cn.hutool.core.collection.CollUtil;
 import cn.hutool.core.util.ObjectUtil;
diff --git a/src/main/java/com/xcong/excoin/modules/coin/service/impl/OrderCoinServiceImpl.java b/src/main/java/com/xcong/excoin/modules/coin/service/impl/OrderCoinServiceImpl.java
index 4d13205..01834ca 100644
--- a/src/main/java/com/xcong/excoin/modules/coin/service/impl/OrderCoinServiceImpl.java
+++ b/src/main/java/com/xcong/excoin/modules/coin/service/impl/OrderCoinServiceImpl.java
@@ -23,13 +23,10 @@
 import com.xcong.excoin.modules.coin.dao.MemberSelectSymbolsDao;
 import com.xcong.excoin.modules.coin.dao.OrderCoinDealDao;
 import com.xcong.excoin.modules.coin.dao.OrderCoinsDao;
-import com.xcong.excoin.modules.coin.dao.platform.CnyUsdtExchangeDao;
-import com.xcong.excoin.modules.coin.dao.platform.TradeSettingDao;
 import com.xcong.excoin.modules.coin.entity.CnyUsdtExchange;
 import com.xcong.excoin.modules.coin.entity.MemberAccountFlowEntity;
 import com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity;
 import com.xcong.excoin.modules.coin.entity.OrderCoinsEntity;
-import com.xcong.excoin.modules.coin.entity.PlatformTradeSettingEntity;
 import com.xcong.excoin.modules.coin.mapper.OrderWalletCoinDealMapper;
 import com.xcong.excoin.modules.coin.mapper.OrderWalletCoinMapper;
 import com.xcong.excoin.modules.coin.parameter.vo.MemberSelectSymbolsVo;
@@ -42,6 +39,9 @@
 import com.xcong.excoin.modules.member.dao.MemberWalletCoinDao;
 import com.xcong.excoin.modules.member.entity.MemberSelectSymbolsEntity;
 import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity;
+import com.xcong.excoin.modules.platform.dao.CnyUsdtExchangeDao;
+import com.xcong.excoin.modules.platform.dao.TradeSettingDao;
+import com.xcong.excoin.modules.platform.entity.PlatformTradeSettingEntity;
 import com.xcong.excoin.utils.MessageSourceUtils;
 
 import cn.hutool.core.collection.CollUtil;
diff --git a/src/main/java/com/xcong/excoin/modules/coin/dao/platform/CnyUsdtExchangeDao.java b/src/main/java/com/xcong/excoin/modules/platform/dao/CnyUsdtExchangeDao.java
similarity index 83%
rename from src/main/java/com/xcong/excoin/modules/coin/dao/platform/CnyUsdtExchangeDao.java
rename to src/main/java/com/xcong/excoin/modules/platform/dao/CnyUsdtExchangeDao.java
index 0d9b4f3..357e51e 100644
--- a/src/main/java/com/xcong/excoin/modules/coin/dao/platform/CnyUsdtExchangeDao.java
+++ b/src/main/java/com/xcong/excoin/modules/platform/dao/CnyUsdtExchangeDao.java
@@ -1,4 +1,4 @@
-package com.xcong.excoin.modules.coin.dao.platform;
+package com.xcong.excoin.modules.platform.dao;
 
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.xcong.excoin.modules.coin.entity.CnyUsdtExchange;
diff --git a/src/main/java/com/xcong/excoin/modules/coin/dao/platform/TradeSettingDao.java b/src/main/java/com/xcong/excoin/modules/platform/dao/TradeSettingDao.java
similarity index 62%
rename from src/main/java/com/xcong/excoin/modules/coin/dao/platform/TradeSettingDao.java
rename to src/main/java/com/xcong/excoin/modules/platform/dao/TradeSettingDao.java
index f68b080..c633b28 100644
--- a/src/main/java/com/xcong/excoin/modules/coin/dao/platform/TradeSettingDao.java
+++ b/src/main/java/com/xcong/excoin/modules/platform/dao/TradeSettingDao.java
@@ -1,13 +1,13 @@
-package com.xcong.excoin.modules.coin.dao.platform;
+package com.xcong.excoin.modules.platform.dao;
 
 import java.util.List;
 
 import org.apache.ibatis.annotations.Param;
 
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.xcong.excoin.modules.coin.entity.PlatformLeverageSettingEntity;
-import com.xcong.excoin.modules.coin.entity.PlatformSymbolsSku;
-import com.xcong.excoin.modules.coin.entity.PlatformTradeSettingEntity;
+import com.xcong.excoin.modules.platform.entity.PlatformLeverageSettingEntity;
+import com.xcong.excoin.modules.platform.entity.PlatformSymbolsSku;
+import com.xcong.excoin.modules.platform.entity.PlatformTradeSettingEntity;
 
 public interface TradeSettingDao extends BaseMapper<PlatformTradeSettingEntity> {
 
diff --git a/src/main/java/com/xcong/excoin/modules/coin/entity/PlatformLeverageSettingEntity.java b/src/main/java/com/xcong/excoin/modules/platform/entity/PlatformLeverageSettingEntity.java
similarity index 93%
rename from src/main/java/com/xcong/excoin/modules/coin/entity/PlatformLeverageSettingEntity.java
rename to src/main/java/com/xcong/excoin/modules/platform/entity/PlatformLeverageSettingEntity.java
index ac907da..8d72d42 100644
--- a/src/main/java/com/xcong/excoin/modules/coin/entity/PlatformLeverageSettingEntity.java
+++ b/src/main/java/com/xcong/excoin/modules/platform/entity/PlatformLeverageSettingEntity.java
@@ -1,4 +1,4 @@
-package com.xcong.excoin.modules.coin.entity;
+package com.xcong.excoin.modules.platform.entity;
 
 import java.io.Serializable;
 
diff --git a/src/main/java/com/xcong/excoin/modules/coin/entity/PlatformSymbolsSku.java b/src/main/java/com/xcong/excoin/modules/platform/entity/PlatformSymbolsSku.java
similarity index 91%
rename from src/main/java/com/xcong/excoin/modules/coin/entity/PlatformSymbolsSku.java
rename to src/main/java/com/xcong/excoin/modules/platform/entity/PlatformSymbolsSku.java
index 268f301..a94171d 100644
--- a/src/main/java/com/xcong/excoin/modules/coin/entity/PlatformSymbolsSku.java
+++ b/src/main/java/com/xcong/excoin/modules/platform/entity/PlatformSymbolsSku.java
@@ -1,4 +1,4 @@
-package com.xcong.excoin.modules.coin.entity;
+package com.xcong.excoin.modules.platform.entity;
 
 import java.io.Serializable;
 
diff --git a/src/main/java/com/xcong/excoin/modules/coin/entity/PlatformTradeSettingEntity.java b/src/main/java/com/xcong/excoin/modules/platform/entity/PlatformTradeSettingEntity.java
similarity index 95%
rename from src/main/java/com/xcong/excoin/modules/coin/entity/PlatformTradeSettingEntity.java
rename to src/main/java/com/xcong/excoin/modules/platform/entity/PlatformTradeSettingEntity.java
index 1eae490..cabac92 100644
--- a/src/main/java/com/xcong/excoin/modules/coin/entity/PlatformTradeSettingEntity.java
+++ b/src/main/java/com/xcong/excoin/modules/platform/entity/PlatformTradeSettingEntity.java
@@ -1,4 +1,4 @@
-package com.xcong.excoin.modules.coin.entity;
+package com.xcong.excoin.modules.platform.entity;
 
 import java.io.Serializable;
 import java.math.BigDecimal;

--
Gitblit v1.9.1