package com.zy.asrs.mapper; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.zy.asrs.entity.AgvLocRule; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface AgvLocRuleMapper extends BaseMapper { List selectByMatnr(String matnr); List selectByMixed(Integer mixed); int updateKeepGoByMatnr(String matnr, Integer keepGo); int updateKeepGoByMixed(Integer keepGo); }