pjb
2025-07-21 ad0afa43ef0ec3001122420df245607e4837da3a
1
2
3
4
5
6
7
8
9
10
11
12
13
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> {
 
    BasRgvErrLog findLatestByTaskNo(Integer rgvNo, Integer taskNo);
 
    BasRgvErrLog findLatest(Integer rgvNo);
 
}