Browse Source

修改pom,并提交bug

zhongwei
Jone 1 year ago
parent
commit
6d78c9615f
  1. 4
      hzims-service/equipment/pom.xml
  2. 294
      hzims-service/equipment/src/main/java/com/hnac/hzims/equipment/controller/UpdateDeptIdController.java
  3. 2
      hzims-service/message/src/main/java/com/hnac/hzims/message/service/impl/WxMessageServiceImpl.java
  4. 1
      hzims-service/operational/src/main/java/com/hnac/hzims/operational/maintenance/controller/MaintenanceController.java

4
hzims-service/equipment/pom.xml

@ -55,6 +55,10 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
</exclusion>
</exclusions>
</dependency>

294
hzims-service/equipment/src/main/java/com/hnac/hzims/equipment/controller/UpdateDeptIdController.java

@ -51,152 +51,152 @@ public class UpdateDeptIdController {
private IUpdateDeptIdService bladexUpdateDataService;
@PostMapping("/updateDeptId")
@ApiOperationSupport(order = 4)
@ApiOperation(value = "更新所有业务数据部门机构字段", notes = "传入数据库相关信息")
public R updateDeptId(@RequestBody UpdateDeptVo updateDeptVo) {
if(StringUtils.isBlank(updateDeptVo.getDbName())) {
return R.fail("请输入数据库名");
}
if(null == updateDeptVo.getDataMappingList() || updateDeptVo.getDataMappingList().isEmpty()) {
return R.fail("请输入机构ID映射信息");
}
boolean result = false;
switch (updateDeptVo.getDbName()) {
case "equipment" :
// 设备管理
result = equipmentUpdateDeptIdService.updateDeptId(updateDeptVo);
break;
case "hzims_inspect":
// 巡检管理
result = inspectUpdateDeptIdService.updateDeptId(updateDeptVo);
break;
case "hzims_operation":
result = operationUpdateDeptIdService.updateDeptId(updateDeptVo);
break;
case "hzims":
result = hzimsUpdateDeptIdService.updateDeptId(updateDeptVo);
break;
case "duty":
result = dutyUpdateDeptIdService.updateDeptId(updateDeptVo);
break;
case "message":
result = messageUpdateDeptIdService.updateDeptId(updateDeptVo);
break;
case "realmonitor":
result = realMonitorUpdateDeptIdService.updateDeptId(updateDeptVo);
break;
case "bladex":
result = bladexUpdateDataService.updateDeptId(updateDeptVo);
break;
default:
break;
}
if(result) {
return R.success("成功");
} else {
return R.fail("更新失败");
}
}
@PostMapping("/updateTenantId")
@ApiOperationSupport(order = 5)
@ApiOperation(value = "更新所有业务数据租户ID字段", notes = "传入数据库相关信息")
public R updateTenantId(@RequestBody UpdateTenantVo updateTenantVo) {
if(StringUtils.isBlank(updateTenantVo.getDbName())) {
return R.fail("请输入数据库名");
}
if(null == updateTenantVo.getDataMappingList() || updateTenantVo.getDataMappingList().isEmpty()) {
return R.fail("请输入机构ID映射信息");
}
boolean result = false;
switch (updateTenantVo.getDbName()) {
case "equipment" :
// 设备管理
result = equipmentUpdateDeptIdService.updateTenantId(updateTenantVo);
break;
case "hzims_inspect":
// 巡检管理
result = inspectUpdateDeptIdService.updateTenantId(updateTenantVo);
break;
case "hzims_operation":
result = operationUpdateDeptIdService.updateTenantId(updateTenantVo);
break;
case "hzims":
result = hzimsUpdateDeptIdService.updateTenantId(updateTenantVo);
break;
case "duty":
result = dutyUpdateDeptIdService.updateTenantId(updateTenantVo);
break;
case "message":
result = messageUpdateDeptIdService.updateTenantId(updateTenantVo);
break;
case "realmonitor":
result = realMonitorUpdateDeptIdService.updateTenantId(updateTenantVo);
break;
case "bladex" :
result = bladexUpdateDataService.updateTenantId(updateTenantVo);
break;
default:
break;
}
if(result) {
return R.success("成功");
} else {
return R.fail("更新失败");
}
}
@PostMapping("/updateDeptIdByTenantId")
@ApiOperationSupport(order = 5)
@ApiOperation(value = "根据租户ID更新机构ID", notes = "传入数据库相关信息")
public R updateDeptIdByTenantId(@RequestBody UpdateDeptIdByTenantIdVO updateDeptIdByTenantIdVO) {
if(StringUtils.isBlank(updateDeptIdByTenantIdVO.getDbName())) {
return R.fail("请输入数据库名");
}
if(null == updateDeptIdByTenantIdVO.getDeptAndTenantIdList() || updateDeptIdByTenantIdVO.getDeptAndTenantIdList().isEmpty()) {
return R.fail("请输入机构ID映射信息");
}
boolean result = false;
switch (updateDeptIdByTenantIdVO.getDbName()) {
case "equipment" :
// 设备管理
result = equipmentUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
break;
case "hzims_inspect":
// 巡检管理
result = inspectUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
break;
case "hzims_operation":
result = operationUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
break;
case "hzims":
result = hzimsUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
break;
case "duty":
result = dutyUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
break;
case "message":
result = messageUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
break;
case "realmonitor":
result = realMonitorUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
break;
case "bladex" :
result = bladexUpdateDataService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
break;
default:
break;
}
if(result) {
return R.success("成功");
} else {
return R.fail("更新失败");
}
}
// @PostMapping("/updateDeptId")
// @ApiOperationSupport(order = 4)
// @ApiOperation(value = "更新所有业务数据部门机构字段", notes = "传入数据库相关信息")
// public R updateDeptId(@RequestBody UpdateDeptVo updateDeptVo) {
// if(StringUtils.isBlank(updateDeptVo.getDbName())) {
// return R.fail("请输入数据库名");
// }
// if(null == updateDeptVo.getDataMappingList() || updateDeptVo.getDataMappingList().isEmpty()) {
// return R.fail("请输入机构ID映射信息");
// }
// boolean result = false;
// switch (updateDeptVo.getDbName()) {
// case "equipment" :
// // 设备管理
// result = equipmentUpdateDeptIdService.updateDeptId(updateDeptVo);
// break;
// case "hzims_inspect":
// // 巡检管理
// result = inspectUpdateDeptIdService.updateDeptId(updateDeptVo);
// break;
// case "hzims_operation":
// result = operationUpdateDeptIdService.updateDeptId(updateDeptVo);
// break;
// case "hzims":
// result = hzimsUpdateDeptIdService.updateDeptId(updateDeptVo);
// break;
// case "duty":
// result = dutyUpdateDeptIdService.updateDeptId(updateDeptVo);
// break;
// case "message":
// result = messageUpdateDeptIdService.updateDeptId(updateDeptVo);
// break;
// case "realmonitor":
// result = realMonitorUpdateDeptIdService.updateDeptId(updateDeptVo);
// break;
// case "bladex":
// result = bladexUpdateDataService.updateDeptId(updateDeptVo);
// break;
// default:
// break;
//
// }
// if(result) {
// return R.success("成功");
// } else {
// return R.fail("更新失败");
// }
// }
//
// @PostMapping("/updateTenantId")
// @ApiOperationSupport(order = 5)
// @ApiOperation(value = "更新所有业务数据租户ID字段", notes = "传入数据库相关信息")
// public R updateTenantId(@RequestBody UpdateTenantVo updateTenantVo) {
// if(StringUtils.isBlank(updateTenantVo.getDbName())) {
// return R.fail("请输入数据库名");
// }
// if(null == updateTenantVo.getDataMappingList() || updateTenantVo.getDataMappingList().isEmpty()) {
// return R.fail("请输入机构ID映射信息");
// }
// boolean result = false;
// switch (updateTenantVo.getDbName()) {
// case "equipment" :
// // 设备管理
// result = equipmentUpdateDeptIdService.updateTenantId(updateTenantVo);
// break;
// case "hzims_inspect":
// // 巡检管理
// result = inspectUpdateDeptIdService.updateTenantId(updateTenantVo);
// break;
// case "hzims_operation":
// result = operationUpdateDeptIdService.updateTenantId(updateTenantVo);
// break;
// case "hzims":
// result = hzimsUpdateDeptIdService.updateTenantId(updateTenantVo);
// break;
// case "duty":
// result = dutyUpdateDeptIdService.updateTenantId(updateTenantVo);
// break;
// case "message":
// result = messageUpdateDeptIdService.updateTenantId(updateTenantVo);
// break;
// case "realmonitor":
// result = realMonitorUpdateDeptIdService.updateTenantId(updateTenantVo);
// break;
// case "bladex" :
// result = bladexUpdateDataService.updateTenantId(updateTenantVo);
// break;
// default:
// break;
//
// }
// if(result) {
// return R.success("成功");
// } else {
// return R.fail("更新失败");
// }
// }
//
// @PostMapping("/updateDeptIdByTenantId")
// @ApiOperationSupport(order = 5)
// @ApiOperation(value = "根据租户ID更新机构ID", notes = "传入数据库相关信息")
// public R updateDeptIdByTenantId(@RequestBody UpdateDeptIdByTenantIdVO updateDeptIdByTenantIdVO) {
// if(StringUtils.isBlank(updateDeptIdByTenantIdVO.getDbName())) {
// return R.fail("请输入数据库名");
// }
// if(null == updateDeptIdByTenantIdVO.getDeptAndTenantIdList() || updateDeptIdByTenantIdVO.getDeptAndTenantIdList().isEmpty()) {
// return R.fail("请输入机构ID映射信息");
// }
// boolean result = false;
//
// switch (updateDeptIdByTenantIdVO.getDbName()) {
// case "equipment" :
// // 设备管理
// result = equipmentUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
// break;
// case "hzims_inspect":
// // 巡检管理
// result = inspectUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
// break;
// case "hzims_operation":
// result = operationUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
// break;
// case "hzims":
// result = hzimsUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
// break;
// case "duty":
// result = dutyUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
// break;
// case "message":
// result = messageUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
// break;
// case "realmonitor":
// result = realMonitorUpdateDeptIdService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
// break;
// case "bladex" :
// result = bladexUpdateDataService.updateDeptIdByTenantId(updateDeptIdByTenantIdVO);
// break;
// default:
// break;
//
// }
// if(result) {
// return R.success("成功");
// } else {
// return R.fail("更新失败");
// }
// }
}

2
hzims-service/message/src/main/java/com/hnac/hzims/message/service/impl/WxMessageServiceImpl.java

@ -42,7 +42,7 @@ import java.util.concurrent.atomic.AtomicReference;
/**
* @author hx
*/
@Service("pushMessageService")
@Service("wxMessageService")
@Slf4j
@AllArgsConstructor
public class WxMessageServiceImpl implements IMessageService {

1
hzims-service/operational/src/main/java/com/hnac/hzims/operational/maintenance/controller/MaintenanceController.java

@ -33,6 +33,7 @@ public class MaintenanceController {
/**
* 日常维护生成任务
* @TODO 待改进业务流程需先整理业务流程后在整理
* @param ids
* @return
*/

Loading…
Cancel
Save