package com.zy.asrs.service; import com.zy.asrs.entity.BasErrLog; import com.zy.asrs.entity.BasRgvErrLog; import com.baomidou.mybatisplus.service.IService; public interface BasRgvErrLogService extends IService { BasRgvErrLog findLatestByTaskNo(Integer rgvNo, Integer taskNo); BasRgvErrLog findLatest(Integer rgvNo); }