Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Jeepay
Commits
b42de3bd
Commit
b42de3bd
authored
Jun 16, 2021
by
xiaoyu
Browse files
Merge remote-tracking branch 'origin/dev' into dev
parents
b44f350c
9492b8f7
Changes
4
Hide whitespace changes
Inline
Side-by-side
docs/sql/init.sql
View file @
b42de3bd
...
@@ -142,7 +142,6 @@ CREATE TABLE `t_mch_info` (
...
@@ -142,7 +142,6 @@ CREATE TABLE `t_mch_info` (
`contact_name`
VARCHAR
(
32
)
COMMENT
'联系人姓名'
,
`contact_name`
VARCHAR
(
32
)
COMMENT
'联系人姓名'
,
`contact_tel`
VARCHAR
(
32
)
COMMENT
'联系人手机号'
,
`contact_tel`
VARCHAR
(
32
)
COMMENT
'联系人手机号'
,
`contact_email`
VARCHAR
(
32
)
COMMENT
'联系人邮箱'
,
`contact_email`
VARCHAR
(
32
)
COMMENT
'联系人邮箱'
,
`private_key`
VARCHAR
(
128
)
COMMENT
'私钥'
,
`state`
TINYINT
(
6
)
NOT
NULL
DEFAULT
1
COMMENT
'商户状态: 0-停用, 1-正常'
,
`state`
TINYINT
(
6
)
NOT
NULL
DEFAULT
1
COMMENT
'商户状态: 0-停用, 1-正常'
,
`remark`
VARCHAR
(
128
)
COMMENT
'商户备注'
,
`remark`
VARCHAR
(
128
)
COMMENT
'商户备注'
,
`init_user_id`
BIGINT
(
20
)
DEFAULT
NULL
COMMENT
'初始用户ID(创建商户时,允许商户登录的用户)'
,
`init_user_id`
BIGINT
(
20
)
DEFAULT
NULL
COMMENT
'初始用户ID(创建商户时,允许商户登录的用户)'
,
...
...
jeepay-core/src/main/java/com/jeequan/jeepay/core/entity/MchInfo.java
View file @
b42de3bd
...
@@ -93,11 +93,6 @@ public class MchInfo extends BaseModel implements Serializable {
...
@@ -93,11 +93,6 @@ public class MchInfo extends BaseModel implements Serializable {
*/
*/
private
String
contactEmail
;
private
String
contactEmail
;
/**
* 私钥
*/
private
String
privateKey
;
/**
/**
* 商户状态: 0-停用, 1-正常
* 商户状态: 0-停用, 1-正常
*/
*/
...
...
jeepay-merchant/src/main/java/com/jeequan/jeepay/mch/ctrl/CurrentUserController.java
View file @
b42de3bd
...
@@ -138,7 +138,7 @@ public class CurrentUserController extends CommonCtrl{
...
@@ -138,7 +138,7 @@ public class CurrentUserController extends CommonCtrl{
throw
new
BizException
(
"新密码与原密码不能相同!"
);
throw
new
BizException
(
"新密码与原密码不能相同!"
);
}
}
sysUserAuthService
.
resetAuthInfo
(
opSysUserId
,
null
,
null
,
opUserPwd
,
CS
.
SYS_TYPE
.
M
GR
);
sysUserAuthService
.
resetAuthInfo
(
opSysUserId
,
null
,
null
,
opUserPwd
,
CS
.
SYS_TYPE
.
M
CH
);
//调用登出接口
//调用登出接口
return
logout
();
return
logout
();
}
}
...
...
jeepay-service/src/main/java/com/jeequan/jeepay/service/mapper/MchInfoMapper.xml
View file @
b42de3bd
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
<result
column=
"contact_name"
property=
"contactName"
/>
<result
column=
"contact_name"
property=
"contactName"
/>
<result
column=
"contact_tel"
property=
"contactTel"
/>
<result
column=
"contact_tel"
property=
"contactTel"
/>
<result
column=
"contact_email"
property=
"contactEmail"
/>
<result
column=
"contact_email"
property=
"contactEmail"
/>
<result
column=
"private_key"
property=
"privateKey"
/>
<result
column=
"state"
property=
"state"
/>
<result
column=
"state"
property=
"state"
/>
<result
column=
"remark"
property=
"remark"
/>
<result
column=
"remark"
property=
"remark"
/>
<result
column=
"init_user_id"
property=
"initUserId"
/>
<result
column=
"init_user_id"
property=
"initUserId"
/>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment