|
|
@@ -364,6 +364,10 @@ public class CmsAccountController {
|
|
|
account.setExpiryTime(DateUtil.parse(data.getExpiryTime()));
|
|
|
flag = true;
|
|
|
}
|
|
|
+ if (StrUtil.isNotBlank(data.getGptEmailPwd())) {
|
|
|
+ account.setGptEmailPwd(data.getGptEmailPwd());
|
|
|
+ flag = true;
|
|
|
+ }
|
|
|
String new_pass = data.getPassword();
|
|
|
if (StrUtil.isNotBlank(new_pass) && !new_pass.trim().equals(account.getPassword())) {
|
|
|
account.setPassword(new_pass.trim());
|
|
|
@@ -555,6 +559,7 @@ public class CmsAccountController {
|
|
|
at.setVerifyLink(data.getVerifyLink());
|
|
|
at.setRelateEmail(data.getRelateEmail());
|
|
|
at.setEmail(data.getSecondEmail());
|
|
|
+ at.setGptEmailPwd(data.getGptEmailPwd());
|
|
|
if (StrUtil.isNotBlank(startTime)) {
|
|
|
at.setStartTime(DateUtil.parse(startTime));
|
|
|
} else {
|
|
|
@@ -1141,6 +1146,7 @@ public class CmsAccountController {
|
|
|
if (StrUtil.isNotBlank(data.getRemark())) {
|
|
|
dbAccount.setRemark(data.getRemark());
|
|
|
}
|
|
|
+ dbAccount.setGptEmailPwd(data.getGptEmailPwd());
|
|
|
accountService.updateById(dbAccount);
|
|
|
|
|
|
GroupsTrips groupsTrips = groupsMapper.selectOne(Wrappers.lambdaQuery(GroupsTrips.class)
|