自动化立体仓库 - WMS系统
#
lty
4 天以前 0b3adecd0463f8487d2c2c8a4a88551e0354bb7a
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);
}