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.

9 lines
213 B
Java

6 years ago
package com.bsd.cases.service;
6 years ago
import com.bsd.cases.util.AjaxResult;
6 years ago
public interface CaseContentLikeService<CaseContentLike> extends BaseService<CaseContentLike> {
6 years ago
6 years ago
AjaxResult updateLike(Long contentId);
6 years ago
}