123456789101112131415161718192021 |
- package com.kmall.admin.dao;
- import com.kmall.admin.entity.CommentPictureEntity;
- import com.kmall.common.dao.BaseDao;
- /**
- * 评价图片Dao
- *
- * @author Scott
- * @email
- * @date 2017-08-29 14:45:55
- */
- public interface CommentPictureDao extends BaseDao<CommentPictureEntity> {
- /**
- * 根据commentId删除
- *
- * @param commentId
- * @return
- */
- int deleteByCommentId(Integer commentId);
- }
|