src/main/java/com/xcong/excoin/common/system/controller/LoginController.java
@@ -18,10 +18,9 @@ import com.xcong.excoin.common.system.dto.OutCenterRegisterDto; import com.xcong.excoin.common.system.dto.RegisterDto; import com.xcong.excoin.common.system.dto.WtWalletDto; import com.xcong.excoin.common.system.entity.WtWallet; import com.xcong.excoin.common.system.vo.LoginVo; import com.xcong.excoin.configurations.properties.ApplicationProperties; import com.xcong.excoin.configurations.properties.SecurityProperties; import com.xcong.excoin.modules.login.vo.LoginVo; import com.xcong.excoin.modules.member.service.MemberService; import com.xcong.excoin.utils.RedisUtils; src/main/java/com/xcong/excoin/modules/login/dao/WalletDetailDao.java
File was renamed from src/main/java/com/xcong/excoin/common/system/dao/WalletDetailDao.java @@ -1,4 +1,4 @@ package com.xcong.excoin.common.system.dao; package com.xcong.excoin.modules.login.dao; import java.math.BigDecimal; import java.util.List; @@ -6,7 +6,8 @@ import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import com.xcong.excoin.common.system.entity.WtWalletDetail; import com.xcong.excoin.modules.login.entity.WtWalletDetail; /** * @description 钱包表 src/main/java/com/xcong/excoin/modules/login/dao/WtTokenDao.java
File was renamed from src/main/java/com/xcong/excoin/common/system/dao/WtTokenDao.java @@ -1,11 +1,12 @@ package com.xcong.excoin.common.system.dao; package com.xcong.excoin.modules.login.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import com.xcong.excoin.common.system.entity.WtToken; import com.xcong.excoin.modules.login.entity.WtToken; @Mapper public interface WtTokenDao { src/main/java/com/xcong/excoin/modules/login/dao/WtWalletDao.java
File was renamed from src/main/java/com/xcong/excoin/common/system/dao/WtWalletDao.java @@ -1,11 +1,11 @@ package com.xcong.excoin.common.system.dao; package com.xcong.excoin.modules.login.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import com.xcong.excoin.common.system.entity.WtWallet; import com.xcong.excoin.modules.login.entity.WtWallet; @Mapper public interface WtWalletDao { src/main/java/com/xcong/excoin/modules/login/dao/WtWordDao.java
File was renamed from src/main/java/com/xcong/excoin/common/system/dao/WtWordDao.java @@ -1,4 +1,4 @@ package com.xcong.excoin.common.system.dao; package com.xcong.excoin.modules.login.dao; import java.util.List; src/main/java/com/xcong/excoin/modules/login/entity/WtBlock.java
File was renamed from src/main/java/com/xcong/excoin/common/system/entity/WtBlock.java @@ -1,4 +1,4 @@ package com.xcong.excoin.common.system.entity; package com.xcong.excoin.modules.login.entity; import java.math.BigDecimal; import java.util.Date; src/main/java/com/xcong/excoin/modules/login/entity/WtToken.java
File was renamed from src/main/java/com/xcong/excoin/common/system/entity/WtToken.java @@ -1,4 +1,4 @@ package com.xcong.excoin.common.system.entity; package com.xcong.excoin.modules.login.entity; import java.math.BigDecimal; import java.util.Date; src/main/java/com/xcong/excoin/modules/login/entity/WtWallet.java
File was renamed from src/main/java/com/xcong/excoin/common/system/entity/WtWallet.java @@ -1,4 +1,4 @@ package com.xcong.excoin.common.system.entity; package com.xcong.excoin.modules.login.entity; import java.util.List; src/main/java/com/xcong/excoin/modules/login/entity/WtWalletDetail.java
File was renamed from src/main/java/com/xcong/excoin/common/system/entity/WtWalletDetail.java @@ -1,4 +1,4 @@ package com.xcong.excoin.common.system.entity; package com.xcong.excoin.modules.login.entity; import java.math.BigDecimal; src/main/java/com/xcong/excoin/modules/login/vo/LoginVo.java
File was renamed from src/main/java/com/xcong/excoin/common/system/vo/LoginVo.java @@ -1,4 +1,4 @@ package com.xcong.excoin.common.system.vo; package com.xcong.excoin.modules.login.vo; import java.util.List; src/main/java/com/xcong/excoin/modules/member/service/MemberService.java
@@ -7,7 +7,6 @@ import com.xcong.excoin.common.system.dto.OutCenterRegisterDto; import com.xcong.excoin.common.system.dto.RegisterDto; import com.xcong.excoin.common.system.dto.WtWalletDto; import com.xcong.excoin.common.system.entity.WtWallet; import com.xcong.excoin.modules.member.entity.MemberEntity; import com.xcong.excoin.modules.member.parameter.dto.MemberAddCoinAddressDto; import com.xcong.excoin.modules.member.parameter.dto.MemberAuthenticationDto; src/main/java/com/xcong/excoin/modules/member/service/impl/MemberServiceImpl.java
@@ -15,20 +15,20 @@ import com.xcong.excoin.common.enumerates.CoinTypeEnum; import com.xcong.excoin.common.enumerates.SymbolEnum; import com.xcong.excoin.common.response.Result; import com.xcong.excoin.common.system.dao.WalletDetailDao; import com.xcong.excoin.common.system.dao.WtTokenDao; import com.xcong.excoin.common.system.dao.WtWalletDao; import com.xcong.excoin.common.system.dao.WtWordDao; import com.xcong.excoin.common.system.dto.OutCenterRegisterDto; import com.xcong.excoin.common.system.dto.RegisterDto; import com.xcong.excoin.common.system.dto.WtWalletDto; import com.xcong.excoin.common.system.entity.WtToken; import com.xcong.excoin.common.system.entity.WtWallet; import com.xcong.excoin.common.system.entity.WtWalletDetail; import com.xcong.excoin.common.system.service.CommonService; import com.xcong.excoin.common.system.vo.LoginVo; import com.xcong.excoin.modules.coin.dao.MemberAccountMoneyChangeDao; import com.xcong.excoin.modules.coin.entity.MemberAccountMoneyChange; import com.xcong.excoin.modules.login.dao.WalletDetailDao; import com.xcong.excoin.modules.login.dao.WtTokenDao; import com.xcong.excoin.modules.login.dao.WtWalletDao; import com.xcong.excoin.modules.login.dao.WtWordDao; import com.xcong.excoin.modules.login.entity.WtToken; import com.xcong.excoin.modules.login.entity.WtWallet; import com.xcong.excoin.modules.login.entity.WtWalletDetail; import com.xcong.excoin.modules.login.vo.LoginVo; import com.xcong.excoin.modules.member.dao.*; import com.xcong.excoin.modules.member.entity.*; import com.xcong.excoin.modules.member.parameter.dto.MemberAddCoinAddressDto;