mitao
2025-01-20 93fec20f3cf9d7801eeaa10acef4687ed110d435
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
}