自动化立体仓库 - WCS系统
#
yxFwq
2024-07-17 fc94238a57a2b90a9938fa2b628b7bcd2774f6d5
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);
 
}