pjb
1 天以前 15ae1a2b9f83cb6ef7dc393767d814c71451b850
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);
}