|
@@ -20,7 +20,7 @@ public class PlanAccountJob {
|
|
|
public ReturnT<String> initPlanAccount(String param) {
|
|
|
try {
|
|
|
coreService.initPlanAccount();
|
|
|
- }catch (Exception e){
|
|
|
+ } catch (Exception e) {
|
|
|
LarkRobotUtil.sendMessage("长文系统初始化异常,请及时查看,@薛一鸣");
|
|
|
log.error("initPlanAccountJob error", e);
|
|
|
}
|
|
@@ -31,7 +31,7 @@ public class PlanAccountJob {
|
|
|
public ReturnT<String> matchPlanAccount(String param) {
|
|
|
try {
|
|
|
coreService.matchContent();
|
|
|
- }catch (Exception e){
|
|
|
+ } catch (Exception e) {
|
|
|
LarkRobotUtil.sendMessage("长文系统匹配异常,请及时查看,@薛一鸣");
|
|
|
log.error("matchPlanAccountJob error", e);
|
|
|
}
|
|
@@ -42,7 +42,7 @@ public class PlanAccountJob {
|
|
|
public ReturnT<String> corePlanAccount(String param) {
|
|
|
try {
|
|
|
coreService.core();
|
|
|
- }catch (Exception e){
|
|
|
+ } catch (Exception e) {
|
|
|
LarkRobotUtil.sendMessage("长文系统核心流程异常,请及时查看,@薛一鸣");
|
|
|
log.error("corePlanAccountJob error", e);
|
|
|
}
|
|
@@ -53,7 +53,7 @@ public class PlanAccountJob {
|
|
|
public ReturnT<String> getPushStatus(String param) {
|
|
|
try {
|
|
|
coreService.getPushStatus();
|
|
|
- }catch (Exception e){
|
|
|
+ } catch (Exception e) {
|
|
|
LarkRobotUtil.sendMessage("长文系统获取结果异常,请及时查看,@薛一鸣");
|
|
|
log.error("getPushStatusJob error", e);
|
|
|
}
|