pang.jiabao
2024-12-23 d50dd7a141ea33b90dfe3227d94a00cf9c97d5b7
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);
 
}