OEE初版,错误问题和交互问题1.29再说
This commit is contained in:
@@ -7,6 +7,8 @@ import com.klp.common.core.page.TableDataInfo;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.Date;
|
||||
import com.klp.domain.vo.TheoryCycleRegressionResultVo;
|
||||
|
||||
/**
|
||||
* 钢卷待操作Service接口
|
||||
@@ -65,5 +67,18 @@ public interface IWmsCoilPendingActionService {
|
||||
* 取消操作
|
||||
*/
|
||||
Boolean cancelAction(Long actionId);
|
||||
|
||||
/**
|
||||
* 计算理论节拍线性回归(默认近6个月),同时返回散点用于前端绘图并将结果缓存。
|
||||
*/
|
||||
TheoryCycleRegressionResultVo calcTheoryCycleRegression(Date startTime, Date endTime);
|
||||
|
||||
/**
|
||||
* 计算理论节拍线性回归(可选择是否返回散点;并对散点数量进行上限控制)。
|
||||
*
|
||||
* @param includePoints 是否返回散点 points(默认 false,避免结果过大)
|
||||
* @param maxPoints 最大散点数(includePoints=true 时生效)
|
||||
*/
|
||||
TheoryCycleRegressionResultVo calcTheoryCycleRegression(Date startTime, Date endTime, Boolean includePoints, Integer maxPoints);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user