#
zhou zhou
2025-12-30 917a8fae43c303f0efb8e8d7317a7694aaf9bb15
1
2
3
4
5
6
7
8
9
10
11
package com.zy.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.entity.BasDevpErrLog;
 
public interface BasDevpErrLogService extends IService<BasDevpErrLog> {
 
    BasDevpErrLog findLatestByTaskNo(Integer sourceStaNo, Integer taskNo);
 
    BasDevpErrLog findLatest(Integer sourceStaNo);
}