CommentPictureDao.java 420 B

123456789101112131415161718192021
  1. package com.kmall.admin.dao;
  2. import com.kmall.admin.entity.CommentPictureEntity;
  3. import com.kmall.common.dao.BaseDao;
  4. /**
  5. * 评价图片Dao
  6. *
  7. * @author Scott
  8. * @email
  9. * @date 2017-08-29 14:45:55
  10. */
  11. public interface CommentPictureDao extends BaseDao<CommentPictureEntity> {
  12. /**
  13. * 根据commentId删除
  14. *
  15. * @param commentId
  16. * @return
  17. */
  18. int deleteByCommentId(Integer commentId);
  19. }