| 123456789101112131415161718192021222324252627 |
- package com.cyksj.service.mange.statistics;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.cyksj.dto.Result;
- import com.cyksj.model.excel.ExcelAccountData;
- import com.cyksj.model.views.BackgroundDataView;
- import com.cyksj.model.views.ExpiredAccountDataView;
- import java.util.List;
- /*
- *项目名: netflix
- *文件名: StatisticsService
- *创建者: JavaZou
- *创建时间:2022/10/17 14:43
- */
- public interface StatisticsDataService {
- Result<BackgroundDataView> getStatisticsByCondition(Long startTime, Long endTime);
- IPage<ExpiredAccountDataView> getExpiredAccountView(Integer goodsId, String account, Boolean renewStatus, Boolean handleStatus, String cnAccount, String usAccount, Integer uid, Long startTime, Long endTime, Long start, Long limit);
- Result<String> updateRenewStatus(Integer relationId);
- Result<String> updateHandleStatus(Integer relationId);
- List<ExcelAccountData> getExpiredAccountViewNoPage(Integer goodsId, String account, Boolean renewStatus, Boolean handleStatus, String cnAccount, String usAccount, Integer userId, Long startTime, Long endTime);
- }
|