1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.web.kanban.service;
 
import com.app.base.data.ApiResponseResult;
import org.springframework.data.domain.PageRequest;
 
public interface NingboEveService {
    ApiResponseResult getPRC_APP_KANBAN_NZSDT(PageRequest pageRequest) throws Exception;
 
    ApiResponseResult getPRC_APP_KANBAN_DYSDT(PageRequest pageRequest) throws Exception;
 
    ApiResponseResult getPRC_APP_KANBAN_K1SDT(PageRequest pageRequest) throws Exception;
 
    ApiResponseResult getPRC_APP_KANBAN_K2SDT(PageRequest pageRequest) throws Exception;
}