This commit is contained in:
dute7liang
2023-12-24 00:58:47 +08:00
parent cc467a1105
commit c083cb9763
10 changed files with 137 additions and 15 deletions

View File

@@ -10,5 +10,9 @@ import com.ruoyi.cai.domain.CaiUserCount;
* @date 2023-12-24
*/
public interface CaiUserCountService extends IService<CaiUserCount> {
void star(Long fromUserId,Long toUserId);
void unStar(Long fromUserId,Long toUserId);
void visitor(Long fromUserId,Long toUserId);
void reset(Long userId);
void resetAsync(Long userId);
}