自动化立体仓库 - WMS系统
#
Junjie
2023-10-02 ce5f3c4a6a9bed1c9f2317c45698fe49e63e5d36
src/main/java/com/zy/asrs/service/LocRuleService.java
@@ -8,12 +8,16 @@
public interface LocRuleService extends IService<LocRule> {
    LocRule find(String matnr);
    List<LocRule> find(String matnr);
    //找混载库位规则
    LocRule findMixed();
    List<LocRule> findMixed();
    //将库位规则组转换为库位组
    List<LocMast> locRuleToLocNos(LocRule locRule);
    int updateKeepGoByMatnr(String matnr, Integer keepGo);
    int updateKeepGoByMixed(Integer keepGo);
}