pang.jiabao
2024-09-09 b2aae85692fb9595d1316936e0b4dee6fae2ab95
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);
 
}