| | |
| | | package com.zy.ints.mapper; |
| | | |
| | | import com.zy.asrs.entity.LocDetl; |
| | | import com.zy.ints.entity.WaitMatin; |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface WaitMatinMapper extends BaseMapper<WaitMatin> { |
| | | |
| | | List<WaitMatin> getHeadPage(Map<String, Object> map); |
| | | |
| | | Integer getHeadPageCount(Map<String, Object> map); |
| | | |
| | | List<WaitMatin> selectWaitMatinBySts(); |
| | | } |