refactor(info-query): 优化跨天信息和基本信息查询
This commit is contained in:
@@ -22,30 +22,42 @@ import java.util.Map;
|
||||
*/
|
||||
@BaseRequest(baseURL = "http://service-info-query/info")
|
||||
public interface InfoService {
|
||||
@Get("/table_total")
|
||||
Long tableTotal();
|
||||
@Get("/table_count")
|
||||
Long tableCount();
|
||||
|
||||
@Get("/hudi_total")
|
||||
Long hudiTotal();
|
||||
@Get("/table_focus_count")
|
||||
Long tableFocusCount();
|
||||
|
||||
@Get("/focus_count")
|
||||
Long focusCount();
|
||||
@Get("/hudi_count")
|
||||
Long hudiCount();
|
||||
|
||||
@Get("/normal_count")
|
||||
Long normalCount();
|
||||
@Get("/hudi_focus_count")
|
||||
Long hudiFocusCount();
|
||||
|
||||
@Get("/un_scheduled_normal_table_count")
|
||||
Long unScheduledNormalTableCount(@Query("version") String version);
|
||||
|
||||
@Get("/un_scheduled_focus_table_count")
|
||||
Long unScheduledFocusTableCount(@Query("version") String version);
|
||||
@Get("/un_receive_version_normal_table")
|
||||
ImmutableList<JobIdAndAlias> unReceiveVersionNormalTable(@Query("version") String version);
|
||||
|
||||
@Get("/un_receive_version_normal_table_count")
|
||||
Long unReceiveVersionNormalTableCount(@Query("version") String version);
|
||||
|
||||
@Get("/un_receive_version_focus_table")
|
||||
ImmutableList<JobIdAndAlias> unReceiveVersionFocusTable(@Query("version") String version);
|
||||
|
||||
@Get("/un_receive_version_focus_table_count")
|
||||
Long unReceiveVersionFocusTableCount(@Query("version") String version);
|
||||
|
||||
@Get("/un_scheduled_normal_table")
|
||||
ImmutableList<JobIdAndAlias> unScheduledNormalTable(@Query("version") String version);
|
||||
|
||||
@Get("/un_scheduled_normal_table_count")
|
||||
Long unScheduledNormalTableCount(@Query("version") String version);
|
||||
|
||||
@Get("/un_scheduled_focus_table")
|
||||
ImmutableList<JobIdAndAlias> unScheduledFocusTable(@Query("version") String version);
|
||||
|
||||
@Get("/un_scheduled_focus_table_count")
|
||||
Long unScheduledFocusTableCount(@Query("version") String version);
|
||||
|
||||
@Get("/job_id_alias")
|
||||
PageResponse<JobIdAndAlias> jobIdAndAlias(@Query Map<String, Object> queryMap);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user