| | |
| | | package com.zy.ints.mapper; |
| | | |
| | | import com.zy.ints.entity.WaitMatin; |
| | | import com.zy.ints.entity.WaitMatout; |
| | | 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 WaitMatoutMapper extends BaseMapper<WaitMatout> { |
| | | |
| | | List<WaitMatout> getHeadPage(Map<String, Object> condition); |
| | | |
| | | Integer getHeadPageCount(Map<String, Object> condition); |
| | | |
| | | List<WaitMatout> selectWaitMatOutBySts(); |
| | | } |