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 { List find(String matnr); List findCode(String matnr, String other); //找混载库位规则 List findMixed(); //将库位规则组转换为库位组 List locRuleToLocNos(LocRule locRule); int updateKeepGoByMatnr(String matnr, Integer keepGo); int updateKeepGoByMixed(Integer keepGo); }