|
|
|
@@ -6,6 +6,7 @@ import com.iformall.domain.po.WxMsgCallback; |
|
|
|
import com.iformall.domain.po.WxMsgConfig; |
|
|
|
import com.iformall.domain.po.WxMsgValidationcode; |
|
|
|
import com.iformall.domain.po.WxMsgValidationcodeModel; |
|
|
|
import com.iformall.enums.EnumMsgModel; |
|
|
|
import com.iformall.enums.EnumMsgSendStatus; |
|
|
|
import com.iformall.enums.EnumVerifyCode; |
|
|
|
import com.iformall.mapper.*; |
|
|
|
@@ -71,7 +72,7 @@ public class BillNotificationSchedule { |
|
|
|
WxMsgConfig wxMsgConfig = checkMsgConfig(tenantId); |
|
|
|
if (wxMsgConfig != null) { |
|
|
|
logger.info("欠缴账单获取模板内容"); |
|
|
|
WxMsgValidationcodeModel wxMsgValidationcodeModel = getMsgModel(tenantId, 7); |
|
|
|
WxMsgValidationcodeModel wxMsgValidationcodeModel = getMsgModel(tenantId, EnumMsgModel.BILL_OWE.getCode()); |
|
|
|
if (wxMsgValidationcodeModel != null) { |
|
|
|
String signature = wxMsgValidationcodeModel.getSignature(); |
|
|
|
String msg = wxMsgValidationcodeModel.getContent(). |
|
|
|
@@ -102,7 +103,7 @@ public class BillNotificationSchedule { |
|
|
|
WxMsgConfig wxMsgConfig = checkMsgConfig(tenantId); |
|
|
|
if (wxMsgConfig != null) { |
|
|
|
logger.info("待缴账单获取模板内容"); |
|
|
|
WxMsgValidationcodeModel wxMsgValidationcodeModel = getMsgModel(tenantId, 7); |
|
|
|
WxMsgValidationcodeModel wxMsgValidationcodeModel = getMsgModel(tenantId, EnumMsgModel.BILL_WAIT_PAY.getCode()); |
|
|
|
if (wxMsgValidationcodeModel != null) { |
|
|
|
String signature = wxMsgValidationcodeModel.getSignature(); |
|
|
|
String msg = wxMsgValidationcodeModel.getContent(). |
|
|
|
|