| | |
| | | import com.zy.asrs.entity.BasErrLog; |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface BasErrLogMapper extends BaseMapper<BasErrLog> { |
| | | |
| | | List<BasErrLog> selectBasErrLogList(@Param("taskNo") Integer taskNo, |
| | | @Param("crnNo") Integer crnNo, |
| | | @Param("plcNo") Integer plcNo, |
| | | @Param("status") Integer status, |
| | | @Param("memo") String memo, |
| | | @Param("modiTimeStart") Date modiTimeStart, |
| | | @Param("modiTimeEnd") Date modiTimeEnd, |
| | | @Param("pageNumber") Integer curr, |
| | | @Param("pageSize") Integer limit); |
| | | |
| | | Long selectBasErrLogListTotal(@Param("taskNo") Integer taskNo, |
| | | @Param("crnNo") Integer crnNo, |
| | | @Param("plcNo") Integer plcNo, |
| | | @Param("status") Integer status, |
| | | @Param("memo") String memo, |
| | | @Param("modiTimeStart") Date modiTimeStart, |
| | | @Param("modiTimeEnd") Date modiTimeEnd); |
| | | |
| | | } |