1
2
3
4
5
6
7
8
9
10
11
12
| package com.dev.service;
|
| import com.app.base.data.ApiResponseResult;
| import org.springframework.data.domain.PageRequest;
|
| import java.util.Date;
|
| public interface ApiDashboardWidgetService {
|
| public ApiResponseResult getList() throws Exception;
|
| }
|
|