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);
|
}
|