📄 userindexedservice.java
字号:
/*
* Created on 2007-9-22
* Last modified on 2007-9-22
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.service.user;
import com.yeqiangwei.club.dao.model.UserIndexed;
import com.yeqiangwei.club.exception.ClubException;
public interface UserIndexedService {
public UserIndexed create(int userId) throws ClubException;
/**
* 如果配置的服务器索引组全部索引了文件则清楚记录释放空间并更新用户表用户为已索引。
* @param userId
* @return
* @throws ClubException
*/
public void clear(int userId) throws ClubException;
public UserIndexed findByUserIdAndServerName(int userId, String serverName);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -