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