Examples of WxRespMusicEntity


Examples of org.hamster.weixinmp.dao.entity.resp.WxRespMusicEntity

    return respPicDesc;
  }

  public WxRespMusicEntity createRespMusic(String fromUserName,
      String toUserName, Integer funcFlag, WxItemMusicEntity itemMusic) {
    WxRespMusicEntity respMusic = new WxRespMusicEntity();
    respMusic.setCreatedDate(new Date());
    respMusic.setCreateTime(WxUtil.currentTimeInSec());
    respMusic.setFromUserName(fromUserName);
    respMusic.setToUserName(toUserName);
    respMusic.setFuncFlag(funcFlag);
    respMusic.setMsgType(WxMsgRespType.MUSIC);
    // respMusic.setMusic(itemMusic);
    if (respMusicDao != null) {
      respMusicDao.save(respMusic);
    } else {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.