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 { List 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); }