package com.web.kanban.service;
|
|
import com.app.base.data.ApiResponseResult;
|
|
import java.util.List;
|
|
import org.springframework.data.domain.PageRequest;
|
|
public interface KanbanService {
|
|
/**
|
* 获取看板列表
|
* factory:公司
|
* company:工厂
|
* date:2021-10-19
|
* **/
|
public ApiResponseResult getKanbanMenu(String factory,String company)throws Exception;
|
|
|
/**
|
* kanbanNo:看板号,1-表示车间看板
|
* lingNo:线号,没有线号时可为空
|
* dataType:看板上的第几个数据源,1表示第一个
|
* date:2020-12-23
|
* **/
|
public ApiResponseResult getKanbanData(String kanbanNo,String lingNo,String dataType)throws Exception;
|
|
/**
|
* kanbanNo:看板号,1-表示车间看板
|
* lingNo:线号,没有线号时可为空
|
* frequency:表示调用看板总次数
|
* date:2021-10-18
|
* **/
|
public ApiResponseResult getTemplateData(String kanbanNo,String lineNo,int frequency)throws Exception;
|
|
ApiResponseResult getIQCKanbanData(String floor)throws Exception;
|
|
ApiResponseResult getMaterialAllSetData(String floor)throws Exception;
|
|
|
ApiResponseResult getZPQTData2(String floor)throws Exception;
|
|
ApiResponseResult getZPQTData(String floor)throws Exception;
|
|
ApiResponseResult getBZData(String floor)throws Exception;
|
ApiResponseResult getBZBlData(String floor)throws Exception;
|
ApiResponseResult getZhiJaQTData(String floor)throws Exception;
|
ApiResponseResult getZhiJaBlData(String floor)throws Exception;
|
ApiResponseResult getZhiJaData(String floor)throws Exception;
|
|
ApiResponseResult getLineHeadData(String floor)throws Exception;
|
|
Boolean getUserImage(String code)throws Exception;
|
|
}
|