pang.jiabao
3 天以前 2de4173f02cc9525949eb20e60595019b9be9a3f
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);
 
}