package com.web.kanban.service; import com.app.base.data.ApiResponseResult; import org.springframework.data.domain.PageRequest; import javax.servlet.http.HttpServletResponse; public interface HgKanbanService { //获取-仓库待入库看板-44386.html public ApiResponseResult getPRC_KB_DEPOTS(PageRequest pageRequest)throws Exception; //IQC待检看板 ApiResponseResult getPRC_KB_IQC(PageRequest pageRequest) throws Exception ; //线头看板 ApiResponseResult getPRC_APP_KANBAN_DATA_DCDC(PageRequest pageRequest); //总看板 ApiResponseResult getPRC_APP_KANBAN_DATA_ZKB(PageRequest pageRequest); ApiResponseResult getV23Kanban(PageRequest pageRequest); ApiResponseResult getV24Kanban(PageRequest pageRequest); ApiResponseResult getGeneralPanelV23(PageRequest pageRequest); ApiResponseResult getGeneralPanelV24(PageRequest pageRequest); }