From 724a5c2fb59508ff62cedab8a4ee2ce357afa368 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Mon, 30 Nov 2020 17:54:28 +0800
Subject: [PATCH] modify
---
src/main/resources/mapper/member/WtWalletMapper.xml | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/main/resources/mapper/member/WtWalletMapper.xml b/src/main/resources/mapper/member/WtWalletMapper.xml
index ed0a835..c59050a 100644
--- a/src/main/resources/mapper/member/WtWalletMapper.xml
+++ b/src/main/resources/mapper/member/WtWalletMapper.xml
@@ -2,9 +2,9 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-<mapper namespace="com.xcong.excoin.common.system.dao.WtWalletDao">
+<mapper namespace="com.xcong.excoin.modules.login.dao.WtWalletDao">
<!-- 定义WtWallet 的复杂关联map -->
- <resultMap type="com.xcong.excoin.common.system.entity.WtWallet" id="WtWalletMap">
+ <resultMap type="com.xcong.excoin.modules.login.entity.WtWallet" id="WtWalletMap">
<result property="privateKey" column="private_key" />
<result property="mnemonicWords" column="mnemonic_words" />
<result property="password" column="password" />
@@ -40,7 +40,7 @@
<!-- 插入方法 -->
- <insert id="insert" parameterType="com.xcong.excoin.common.system.entity.WtWallet"
+ <insert id="insert" parameterType="com.xcong.excoin.modules.login.entity.WtWallet"
useGeneratedKeys="true" keyProperty="item.address">
INSERT INTO wt_wallet (
<include refid="columns"></include>
@@ -130,6 +130,7 @@
address,
mnemonic_words,
wallet_name,
+ password,
terminal_Id
from wt_wallet
where mnemonic_words=#{mnemonic_words}
--
Gitblit v1.9.1