package com.zzg.system.service.state;
|
|
|
import com.github.pagehelper.PageInfo;
|
import com.zzg.system.domain.bo.PlacementStatisticsBO;
|
import com.zzg.system.domain.bo.ProjectStatisticsBO;
|
import com.zzg.system.domain.vo.*;
|
|
import java.util.Date;
|
import java.util.List;
|
|
public interface StateDateCenterService {
|
|
ProjectAnalysisSumVO projectSumCount(String location,
|
Integer projectStatus,
|
Date projectStartTime);
|
|
PageInfo<ProjectStatusExpiredVO> expiredProjectStatus(ProjectStatisticsBO projectStatisticsBO);
|
|
PlacementStatisticsVO placementStatistics(String projectStreet, Date projectStartTime, Integer type);
|
|
PageInfo<TransitionPageVO> placementStatisticsPage(PlacementStatisticsBO placementStatisticsBO);
|
|
AssetMoneyVO sumAssetMoney(Date stateTime);
|
|
List<AssetGraphVO> listAssetGraph(Date stateTime);
|
|
PlacementStreetVO sumPlacementStreet(String street, Date stateTime);
|
}
|