Package com.skyline.base.type

Examples of com.skyline.base.type.ResourceType


      if (commentType.equals(CommentType.SHARE)) {
        LOGGER.debug("评论分享:" + resourceId);
        shareDao.updateCommentNumAdd(resourceId);
      } else {
        try {
          ResourceType resourceType = ResourceType.valueOf(commentType.toString());
          if (resourceType != null) {
            resourceDao.updateCommentNumAdd(resourceType, resourceId);
          }
        } catch (Exception e) {
          LOGGER.warn("", e);
View Full Code Here

TOP

Related Classes of com.skyline.base.type.ResourceType

Copyright © 2018 www.massapicom. 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.