| | |
| | | import com.ycl.platform.domain.dto.CheckScoreDTO; |
| | | import com.ycl.platform.domain.dto.ScoreIndexDTO; |
| | | import com.ycl.platform.domain.entity.CheckScore; |
| | | import com.ycl.platform.domain.query.DashboardQuery; |
| | | import enumeration.OperationType; |
| | | |
| | | import java.util.Date; |
| | |
| | | * 首页考核预警 |
| | | * @return 数据 |
| | | */ |
| | | List<Map<String, Object>> home(); |
| | | List<Map<String, Object>> home(Date startTime,Date endTime); |
| | | |
| | | /** |
| | | * 首页核算 |
| | |
| | | List<Map<String, Object>> calculate(Date startDate, Date endDate, String category); |
| | | |
| | | CheckScore getLast(CheckScore checkScore); |
| | | |
| | | List<CheckScore> dashboard(DashboardQuery dashboardQuery); |
| | | |
| | | List<CheckScore> selectToday(String day); |
| | | |
| | | } |