自动化立体仓库 - WMS系统
lty
6 小时以前 df11218af96a29e69221078ad981737068acc435
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.asrs.service;
 
import com.zy.asrs.entity.BasArmRules;
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.param.ArmPrecomputeParam;
 
import java.util.List;
 
public interface BasArmRulesService extends IService<BasArmRules> {
 
    List<BasArmRules> AllStatusSatisfyBasArmRules(int status);
 
    boolean updateStatus(Double materialLength,Double materialWidth,Double materialHeight,Double materialWeight,Double materialNumber,int status);
    boolean updateStatus(ArmPrecomputeParam.CombMat combMat);
 
    Integer getNumber(Double weight,Double volume,Double length,Double width,Double height);
}