Examples of PhotoAlbum


Examples of com.freewebsys.sns.pojo.PhotoAlbum

   */
  @Override
  @Transactional
  public void deletePhotoAlbumById(Integer id) throws PhotoAlbumException {
    try{
      PhotoAlbum photoAlbum = (PhotoAlbum) baseDao.findById(PhotoAlbum.class, id);
      baseDao.delete(photoAlbum);
    } catch (Exception e) {
      throw new PhotoAlbumException("PhotoAlbum删除异常");
    }
  }
View Full Code Here

Examples of com.freewebsys.sns.pojo.PhotoAlbum

  @Transactional
  public void savePhoto(Integer photoAlbumId, String[] photoUploadFile,
      String[] photoUploadFileName, UserInfo userInfo)
      throws PhotoException {
    try {
      PhotoAlbum photoAlbum = null;
      if (photoAlbumId == null) {
      }
      for (int i = 0; photoUploadFile != null
          && i < photoUploadFile.length; i++) {
        Photo photo = new Photo();
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.