package com.ischoolbar.programmer.service.common; import java.util.List; import java.util.Map; import org.springframework.stereotype.Service; import com.ischoolbar.programmer.entity.common.Comment; @Service public interface CommentService { public int add(Comment comment); public int edit(Comment comment); public int delete(Long id); public List findList(Map queryMap); public Integer getTotal(Map queryMap); public Comment findById(Long id); }