#
lsh
2024-07-15 8c47919d892aaeb00cdef1b408c88a09113a6213
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.BasSteErrLog;
 
public interface BasSteErrLogService extends IService<BasSteErrLog> {
 
    BasSteErrLog findLatestByTaskNo(Integer steNo, Integer taskNo);
 
    BasSteErrLog findLatest(Integer steNo);
 
}