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

14 lines
408 B
Java

5 years ago
package com.bsd.cases.service;
5 years ago
import com.alibaba.fastjson.JSONObject;
5 years ago
import com.bsd.cases.util.AjaxResult;
5 years ago
import java.util.List;
5 years ago
public interface CaseContentCommentsService<CaseContentComments> extends BaseService<CaseContentComments> {
5 years ago
JSONObject getCaseContentCommentsByContentId(Long contentId, Integer pageNum, Integer pageSize);
5 years ago
AjaxResult addComments(Long contentId,String comments);
5 years ago
}