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
14 lines
408 B
Java
package com.bsd.cases.service;
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.bsd.cases.util.AjaxResult;
|
|
|
|
import java.util.List;
|
|
|
|
public interface CaseContentCommentsService<CaseContentComments> extends BaseService<CaseContentComments> {
|
|
|
|
JSONObject getCaseContentCommentsByContentId(Long contentId, Integer pageNum, Integer pageSize);
|
|
|
|
AjaxResult addComments(Long contentId,String comments);
|
|
}
|