package com.zy.asrs.mapper; import com.zy.asrs.entity.LocCheck; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.zy.asrs.entity.LocOwner; import com.zy.asrs.entity.ManLocDetl; import org.apache.ibatis.annotations.Delete; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Mapper @Repository public interface LocCheckMapper extends BaseMapper { List getAutoLocDetl(); List getCountLocDetl(@Param("count") int count); List getMatnrCountLocDetl(@Param("count") int count,@Param("matnr") String matnr); List getLocCountLocDetl(@Param("count") int count,@Param("loc_no") String locno); @Delete("DELETE FROM man_loc_check") boolean deleteAll(); List getLocCount(); List getOwnerCount(); List getOwnerCountLocDetl(int count, String owner); }