pang.jiabao
2025-11-10 6e1a29fbb8b364337d1f14693a4b573ef4ab43dc
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);
}