...
|
...
|
@@ -58,6 +58,15 @@ public class BuyerNoticeFacade extends BaseNoticeFacade { |
|
|
.send();
|
|
|
}
|
|
|
|
|
|
|
|
|
public void sellerDepositOrderNotPaidNotice(int uid, long orderCode){
|
|
|
log.info("sellerDepositOrderNotPaidNotice uid {} orderCode {}", uid, orderCode);
|
|
|
newNotice(uid)
|
|
|
.withLogPrefix("notice seller DepositOrder not paid")
|
|
|
.withInBox(InboxBusinessTypeEnum.PURCHASE_UNPAID, orderCode)
|
|
|
.send();
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 买家订单支付成功
|
|
|
*
|
...
|
...
|
|