Commit 444fd43a authored by shiyu's avatar shiyu

出价超越通知

parent 2a86bbae
package com.wwdz.ch.wx.entity.request;
import com.wwdz.ch.core.entity.AbstractSubscribeMsg;
import com.xxdxxs.entity.Entity;
import java.util.Map;
public class AuctionMsgRequestDto implements Entity, AbstractSubscribeMsg {
/**
* 竞拍成功用户名称
*/
private String buyerName;
/**
* 商品名称
*/
private String itemName;
/**
* 截止时间
*/
private String endTime;
/**
* 付款截止时间
*/
private String payEndTime;
/**
* 拍卖商品当前价格
*/
private String currentPrice;
@Override
public Map<String, Object> getTempletParam() {
return null;
}
@Override
public String getTempletId() {
return null;
}
}
......@@ -122,6 +122,12 @@ public class SendMsgServiceImpl implements SendMsgService {
return null;
}
@Override
public Result auctionSuccessMsg(String openId, SignedNoticeMsg signedNoticeMsg) {
return null;
}
@Override
public Result sendSignedTempletMsg(String openId, SignedNoticeMsg signedNoticeMsg) {
String token = officialAccountApi.getAccessToken();
......
......@@ -22,5 +22,14 @@ public interface SendMsgService {
*/
Result sendAuctionOfferOutMsg(String openId, SignedNoticeMsg signedNoticeMsg);
/**
* 竞拍成功通知
* @param openId
* @param signedNoticeMsg
* @return
*/
Result auctionSuccessMsg(String openId, SignedNoticeMsg signedNoticeMsg);
String getOpenIdByUserId(long userId);
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment