自动化立体仓库 - WMS系统
*
L
22 小时以前 4eb8d259b622226eb275666b0b06e7b19d5236f9
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);
}