pjb
2025-10-17 ce9d50ea91ae6c5af17498e35fe5d5080a3b7122
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);
}