查询指定用户各功能使用情况
This commit is contained in:
@@ -10,6 +10,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 服务类
|
||||
@@ -149,4 +150,11 @@ public interface AccountService extends IService<Account> {
|
||||
void toVisitor(Account account);
|
||||
|
||||
List<Long> setUserValidToDayEnd();
|
||||
|
||||
IPage<Account> getPageByDateAndUserType(String startTime, String endTime, Integer type, int pageNum, int size);
|
||||
|
||||
Map<String, Long> getByDateAndUserType(String startTime, String endTime, Integer type);
|
||||
|
||||
IPage<Account> getPageByIds(List<Long> ids, int pageNum, int size);
|
||||
List<Account> getByIds(List<Long> ids);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user