You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
517 B

package com.ischoolbar.programmer.dao.common;
import java.util.List;
import java.util.Map;
import org.springframework.stereotype.Repository;
import com.ischoolbar.programmer.entity.common.Comment;
@Repository
public interface CommentDao {
public int add(Comment comment);
public int edit(Comment comment);
public int delete(Long id);
public List<Comment> findList(Map<String, Object> queryMap);
public Integer getTotal(Map<String, Object> queryMap);
public Comment findById(Long id);
}