Browse Source

Merge remote-tracking branch 'origin/develop' into develop

develop
王兴琳 9 months ago
parent
commit
09086253cf
  1. 6
      zc-business/src/main/java/com/zc/business/controller/DcMYSQLJob.java
  2. 9
      zc-business/src/main/java/com/zc/business/interfaces/OperationLogAspect.java
  3. 8
      zc-business/src/main/java/com/zc/business/service/impl/DcEmergencyPlansServiceImpl.java

6
zc-business/src/main/java/com/zc/business/controller/DcMYSQLJob.java

@ -35,7 +35,7 @@ public class DcMYSQLJob {
// this.environment = environment;
//}
@Scheduled(cron = "0 0 22 * * ?")
//@Scheduled(cron = "0 0 22 * * ?")
//@Scheduled(cron = "0 10 * * * ?")
public void backupAthena() throws IOException {
//String url = "jdbc:mysql://10.0.111.11:3306/athena?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true";
@ -43,7 +43,7 @@ public class DcMYSQLJob {
extracted(UniversalEnum.ATHENA.getValue(), "athena");
}
@Scheduled(cron = "0 30 22 * * ?")
//@Scheduled(cron = "0 30 22 * * ?")
//@Scheduled(cron = "0 20 * * * ?")
public void backupJiHeDC() throws IOException {
// 数据库配置信息
@ -52,7 +52,7 @@ public class DcMYSQLJob {
extracted(UniversalEnum.JIHE_DC.getValue(), "jihe-dc");
}
@Scheduled(cron = "0 0 23 * * ?")
//@Scheduled(cron = "0 0 23 * * ?")
//@Scheduled(cron = "0 30 * * * ?")
public void backupJiHeDCPro() throws IOException {
// 数据库配置信息

9
zc-business/src/main/java/com/zc/business/interfaces/OperationLogAspect.java

@ -469,9 +469,10 @@ public class OperationLogAspect {
if (loginUser != null) {
SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId());
if (sysDept != null) {
operLog.setDeptName(sysDept.getDeptName());
}
operLog.setOperName(loginUser.getUsername());
operLog.setDeptName(sysDept.getDeptName());
operLog.setOperLocation(loginUser.getLoginLocation());
operLog.setOperType(UniversalEnum.TWO.getValue());
} else {
@ -592,8 +593,10 @@ public class OperationLogAspect {
if (loginUser != null) {
SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId());
if (sysDept != null) {
operLog.setDeptName(sysDept.getDeptName());
}
operLog.setOperName(loginUser.getUsername());
operLog.setDeptName(sysDept.getDeptName());
operLog.setOperLocation(loginUser.getLoginLocation());
operLog.setOperType(UniversalEnum.ZERO.getValue());
} else {

8
zc-business/src/main/java/com/zc/business/service/impl/DcEmergencyPlansServiceImpl.java

@ -1277,9 +1277,13 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService {
deviceNames.add(dcDevice.getDeviceName());
dcOperLog.setDcDeviceName(deviceNames.toString());
LoginUser loginUser = SecurityUtils.getLoginUser();
dcOperLog.setOperName(loginUser.getUsername());
if (StringUtils.isNotEmpty(loginUser.getUsername())) {
dcOperLog.setOperName(loginUser.getUsername());
}
SysDept sysDept = iSysDeptService.selectDeptById(SecurityUtils.getLoginUser().getDeptId());
dcOperLog.setDeptName(sysDept.getDeptName());
if (StringUtils.isNotEmpty(sysDept.getDeptName())) {
dcOperLog.setDeptName(sysDept.getDeptName());
}
dcOperLog.setOperLocation(SecurityUtils.getLoginUser().getLoginLocation());
dcOperLog.setOperType(UniversalEnum.THREE.getValue());
dcOperLog.setOperIp(IpUtils.getIpAddr(ServletUtils.getRequest()));

Loading…
Cancel
Save