Esempio n. 1
0
 /**
  * 创建动态
  *
  * @param a
  * @param groupId
  * @throws XueWenServiceException
  */
 private void createGroupDynamic(Live a, String groupId) throws XueWenServiceException {
   if (a != null && !StringUtil.isBlank(groupId)) {
     groupDynamicService.addGroupDynamic(
         groupId,
         "",
         "",
         a.getId(),
         a.getTitle(),
         a.getIntro(),
         "",
         a.getImages(),
         a.getCreateUser(),
         a.getCreateUserName(),
         a.getCreateUserLogoUrl(),
         Config.TYPE_LIVE_GROUP,
         a.getCtime());
   }
 }