public QYImageReqMsg(String picUrl, String mediaId) { super(); this.picUrl = picUrl; this.mediaId = mediaId; setMsgType(QYReqType.IMAGE); }
String picUrl = (String)reqMap.get("PicUrl"); String mediaId = (String)reqMap.get("MediaId"); QYImageReqMsg imageReqMsg = new QYImageReqMsg(picUrl, mediaId); buildBasicReqMsg(reqMap, imageReqMsg); msg = handleImageMsg(imageReqMsg);
String picUrl = (String)reqMap.get("PicUrl"); String mediaId = (String)reqMap.get("MediaId"); QYImageReqMsg imageReqMsg = new QYImageReqMsg(picUrl, mediaId); buildBasicReqMsg(reqMap, imageReqMsg); msg = handleImageMsg(imageReqMsg);
public QYImageReqMsg(String picUrl, String mediaId) { super(); this.picUrl = picUrl; this.mediaId = mediaId; setMsgType(QYReqType.IMAGE); }