| | |
| | | import com.zy.asrs.entity.BasErrLog; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface BasErrLogService extends IService<BasErrLog> { |
| | | |
| | | BasErrLog findLatestByTaskNo(Integer crnNo, Integer taskNo); |
| | | |
| | | BasErrLog findLatest(Integer crnNo); |
| | | |
| | | List<BasErrLog> selectBasErrLogList(Integer taskNo, Integer crnNo, Integer plcNo, Integer status,String memo, Date modiTimeStart, Date modiTimeEnd, Integer curr, Integer limit); |
| | | Long selectBasErrLogListTotal(Integer taskNo, Integer crnNo, Integer plcNo, Integer status,String memo,Date modiTimeStart,Date modiTimeEnd); |
| | | |
| | | |
| | | } |