zoujiajian 2 yıl önce
ebeveyn
işleme
5ff7b28523

+ 5 - 0
netflix-common/src/main/java/com/cyksj/common/constant/Constant.java

@@ -252,4 +252,9 @@ public interface Constant {
 	Integer CORP_LINK_JOB_ID = 192;
 
 	String DUTY_SERVICE_CHANGE_MSG = "%s值班人员不足三人";
+
+	/**
+	 * 系统周末值班客服变更通知手机号
+	 */
+	String DUTY_SERVICE_CHANGE_NOTIFY_PHONE = "17681947535";
 }

+ 1 - 1
netflix-service/src/main/java/com/cyksj/service/sys/impl/SysConfigChangeRecordServiceImpl.java

@@ -98,7 +98,7 @@ public class SysConfigChangeRecordServiceImpl extends ServiceImpl<SysConfigChang
 				this.save(sysConfigChangeRecord);
 
 				if (weekdayMsgNotifySb.length() > 0 && envCommonService.isPrdEnv()) {
-					SmsUtil.sendLuoKey2Msg("手机号", String.format(Constant.DUTY_SERVICE_CHANGE_MSG, weekdayMsgNotifySb));
+					SmsUtil.sendLuoKey2Msg(Constant.DUTY_SERVICE_CHANGE_NOTIFY_PHONE, String.format(Constant.DUTY_SERVICE_CHANGE_MSG, weekdayMsgNotifySb));
 				}
 				return true;
 			}