pang.jiabao
2024-08-18 39ba98b7139ef8fb60d0d8464da69318d74a74ee
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);
 
}