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.

31 lines
527 B

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<Comment> findList(Map<String, Object> queryMap);
public Integer getTotal(Map<String, Object> queryMap);
public Comment findById(Long id);
}