|
|
@@ -343,6 +343,18 @@ public class CmsAccountController {
|
|
|
account.setRemark(data.getRemark());
|
|
|
flag = true;
|
|
|
}
|
|
|
+ if (StrUtil.isNotEmpty(data.getVerifyLink())) {
|
|
|
+ account.setVerifyLink(data.getVerifyLink());
|
|
|
+ flag = true;
|
|
|
+ }
|
|
|
+ if (StrUtil.isNotEmpty(data.getSecondEmail())) {
|
|
|
+ account.setEmail(data.getSecondEmail());
|
|
|
+ flag = true;
|
|
|
+ }
|
|
|
+ if (StrUtil.isNotEmpty(data.getRelateEmail())) {
|
|
|
+ account.setRelateEmail(data.getRelateEmail());
|
|
|
+ flag = true;
|
|
|
+ }
|
|
|
if (StrUtil.isNotBlank(data.getBankCard())) {
|
|
|
account.setBankCard(data.getBankCard());
|
|
|
flag = true;
|