|
|
@@ -388,7 +388,7 @@ public class LawyerUserViolationServiceImpl extends ServiceImpl<LawyerUserViolat
|
|
|
// 构建通知消息内容
|
|
|
String message = buildReporterMessage(lawyerUserViolation);
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
- jsonObject.put("title", "平台已受理");
|
|
|
+ jsonObject.put("title", "举报通知");
|
|
|
jsonObject.put("message", message);
|
|
|
lifeNotice.setContext(jsonObject.toJSONString());
|
|
|
lifeNotice.setNoticeType(1);
|
|
|
@@ -1079,7 +1079,7 @@ public class LawyerUserViolationServiceImpl extends ServiceImpl<LawyerUserViolat
|
|
|
if (REPORT_CONTEXT_TYPE_ORDER.equals(reportContextType)) {
|
|
|
notificationInfo.setMessage("您举报律师服务态度差,经核实,确实存在此行为,"
|
|
|
+ "订单金额将在1-3个工作日原路返还,请注意查收。");
|
|
|
- notificationInfo.setTitle("订单举报成功通知");
|
|
|
+ notificationInfo.setTitle("举报成功通知");
|
|
|
}
|
|
|
} else {
|
|
|
// 审批驳回
|
|
|
@@ -1089,7 +1089,7 @@ public class LawyerUserViolationServiceImpl extends ServiceImpl<LawyerUserViolat
|
|
|
message += "拒绝原因:" + reportResult;
|
|
|
}
|
|
|
notificationInfo.setMessage(message);
|
|
|
- notificationInfo.setTitle("用户举报失败通知");
|
|
|
+ notificationInfo.setTitle("举报失败通知");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -1108,7 +1108,7 @@ public class LawyerUserViolationServiceImpl extends ServiceImpl<LawyerUserViolat
|
|
|
String message = String.format("用户对编号为%s的订单进行申诉,经核实,用户举报属实,"
|
|
|
+ "订单金额将会退还给用户。", orderId);
|
|
|
notificationInfo.setMessage(message);
|
|
|
- notificationInfo.setTitle("咨询订单被举报成功通知");
|
|
|
+ notificationInfo.setTitle("被举报成功通知");
|
|
|
return notificationInfo;
|
|
|
}
|
|
|
|