...
|
...
|
@@ -185,7 +185,7 @@ public class InBoxFacade { |
|
|
* @param buyerUid
|
|
|
* @param orderCode
|
|
|
*/
|
|
|
public void buyerGetEarnestMoneyWhenAppraiseFail(int buyerUid, long orderCode) {
|
|
|
public void buyerGetEarnestMoneyWhenAppraiseFail(int buyerUid, long orderCode,String prdName) {
|
|
|
try {
|
|
|
executorService.execute(()->{
|
|
|
InboxBusinessTypeEnum ibt = InboxBusinessTypeEnum.PURCHASE_CLOSED_PLATFORM;
|
...
|
...
|
@@ -204,7 +204,7 @@ public class InBoxFacade { |
|
|
}
|
|
|
List<String> mobileList = Arrays.asList(phone);
|
|
|
SmsContentEnum smsIbt=SmsContentEnum.SMS_CLOSED_PLATFORM;
|
|
|
String content=smsIbt.getReplacedContent(orderCode);
|
|
|
String content=smsIbt.getReplacedContent(prdName);
|
|
|
sendSmsService.smsSendByMobile(content,mobileList);
|
|
|
logger.info("record buyerGetEarnestMoneyWhenAppraiseFail inbox sms msg, buyerUid {}, orderCode {}",
|
|
|
buyerUid, orderCode);
|
...
|
...
|
|