pang.jiabao
2025-02-07 f75ab7eb69a218aa79ccc77c092887f009d16f90
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.service;
 
import com.zy.entity.BasErrLog;
import com.baomidou.mybatisplus.service.IService;
 
public interface BasErrLogService extends IService<BasErrLog> {
 
    BasErrLog findLatestByTaskNo(Integer crnNo, Integer taskNo);
 
    BasErrLog findLatest(Integer crnNo);
 
}