自动化立体仓库 - WMS系统
ZY
2025-02-06 89a2971d0a728641f1745ae7acb41b4800592a38
src/main/java/com/zy/asrs/service/LocRuleService.java
@@ -1,10 +1,25 @@
package com.zy.asrs.service;
import com.zy.asrs.entity.LocMast;
import com.zy.asrs.entity.LocRule;
import com.baomidou.mybatisplus.service.IService;
import java.util.List;
public interface LocRuleService extends IService<LocRule> {
    LocRule find(String matnr, String batch, int startRow, int endRow);
    List<LocRule> find(String matnr);
    List<LocRule> findCode(String matnr, String other);
    //找混载库位规则
    List<LocRule> findMixed();
    //将库位规则组转换为库位组
    List<LocMast> locRuleToLocNos(LocRule locRule);
    int updateKeepGoByMatnr(String matnr, Integer keepGo);
    int updateKeepGoByMixed(Integer keepGo);
}