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 { /** * 根据commentId删除 * * @param commentId * @return */ int deleteByCommentId(Integer commentId); }